summary refs log tree commit diff
path: root/pkgs/servers/monitoring/prometheus/default.nix
blob: 25053e837949196cc04d1f69401401c262710880 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
{ stdenv
, lib
, go
, pkgs
, nodejs-14_x
, nodePackages
, buildGoModule
, fetchFromGitHub
, mkYarnPackage
, nixosTests
, fetchpatch
, enableAWS ? true
, enableAzure ? true
, enableConsul ? true
, enableDigitalOcean ? true
, enableEureka ? true
, enableGCE ? true
, enableHetzner ? true
, enableKubernetes ? true
, enableLinode ? true
, enableMarathon ? true
, enableMoby ? true
, enableOpenstack ? true
, enablePuppetDB ? true
, enableScaleway ? true
, enableTriton ? true
, enableUyuni ? true
, enableXDS ? true
, enableZookeeper ? true
}:

let
  version = "2.30.3";

  src = fetchFromGitHub {
    rev = "v${version}";
    owner = "prometheus";
    repo = "prometheus";
    sha256 = "1as6x5bsp7mxa4rp7jhyjlpcvzqm1zngnwvp73rc4rwhz8w8vm3k";
  };

  goPackagePath = "github.com/prometheus/prometheus";

  codemirrorNode = import ./webui/codemirror-promql {
    inherit pkgs;
    nodejs = nodejs-14_x;
    inherit (stdenv.hostPlatform) system;
  };
  webuiNode = import ./webui/webui {
    inherit pkgs;
    nodejs = nodejs-14_x;
    inherit (stdenv.hostPlatform) system;
  };

  codemirror = stdenv.mkDerivation {
    name = "prometheus-webui-codemirror-promql";
    src = "${src}/web/ui/module/codemirror-promql";

    buildInputs = [ nodejs-14_x nodePackages.typescript codemirrorNode.nodeDependencies ];

    configurePhase = ''
      ln -s ${codemirrorNode.nodeDependencies}/lib/node_modules node_modules
    '';
    buildPhase = ''
      PUBLIC_URL=. npm run build
    '';
    installPhase = ''
      mkdir -p $out
      mv lib dist $out
    '';
    distPhase = ":";
  };


  webui = stdenv.mkDerivation {
    name = "prometheus-webui";
    src = "${src}/web/ui/react-app";

    buildInputs = [ nodejs-14_x webuiNode.nodeDependencies ];

    # create `node_modules/.cache` dir (we need writeable .cache)
    # and then copy the rest over.
    configurePhase = ''
      mkdir -p node_modules/{.cache,.bin}
      cp -a ${webuiNode.nodeDependencies}/lib/node_modules/. node_modules
    '';
    buildPhase = "PUBLIC_URL=. npm run build";
    installPhase = "mv build $out";
    distPhase = "true";
  };
in
buildGoModule rec {
  pname = "prometheus";
  inherit src version;

  vendorSha256 = "0qyv8vybx5wg8k8hwvrpp4hz9wv6g4kf9sq5v5qc2bxx6apc0s9r";

  excludedPackages = [ "documentation/prometheus-mixin" ];

  nativeBuildInputs = [ nodejs-14_x ];

  postPatch = ''
    # we don't want this anyways, as we
    # build modules for them
    echo "exit 0" > web/ui/module/build.sh

    ln -s ${webuiNode.nodeDependencies}/lib/node_modules web/ui/react-app/node_modules
    ln -s ${webui} web/ui/static/react

    # webui-codemirror
    ln -s ${codemirror}/dist web/ui/module/codemirror-promql/dist
    ln -s ${codemirror}/lib web/ui/module/codemirror-promql/lib

    # Disable some service discovery to shrink binaries.
    ${lib.optionalString (!enableAWS)
      "sed -i -e '/register aws/d' discovery/install/install.go"}
    ${lib.optionalString (!enableAzure)
      "sed -i -e '/register azure/d' discovery/install/install.go"}
    ${lib.optionalString (!enableConsul)
      "sed -i -e '/register consul/d' discovery/install/install.go"}
    ${lib.optionalString (!enableDigitalOcean)
      "sed -i -e '/register digitalocean/d' discovery/install/install.go"}
    ${lib.optionalString (!enableEureka)
      "sed -i -e '/register eureka/d' discovery/install/install.go"}
    ${lib.optionalString (!enableGCE)
      "sed -i -e '/register gce/d' discovery/install/install.go"}
    ${lib.optionalString (!enableHetzner)
      "sed -i -e '/register hetzner/d' discovery/install/install.go"}
    ${lib.optionalString (!enableKubernetes)
      "sed -i -e '/register kubernetes/d' discovery/install/install.go"}
    ${lib.optionalString (!enableLinode)
      "sed -i -e '/register linode/d' discovery/install/install.go"}
    ${lib.optionalString (!enableMarathon)
      "sed -i -e '/register marathon/d' discovery/install/install.go"}
    ${lib.optionalString (!enableMoby)
      "sed -i -e '/register moby/d' discovery/install/install.go"}
    ${lib.optionalString (!enableOpenstack)
      "sed -i -e '/register openstack/d' discovery/install/install.go"}
    ${lib.optionalString (!enablePuppetDB)
      "sed -i -e '/register puppetdb/d' discovery/install/install.go"}
    ${lib.optionalString (!enableScaleway)
      "sed -i -e '/register scaleway/d' discovery/install/install.go"}
    ${lib.optionalString (!enableTriton)
      "sed -i -e '/register triton/d' discovery/install/install.go"}
    ${lib.optionalString (!enableUyuni)
      "sed -i -e '/register uyuni/d' discovery/install/install.go"}
    ${lib.optionalString (!enableXDS)
      "sed -i -e '/register xds/d' discovery/install/install.go"}
    ${lib.optionalString (!enableZookeeper)
      "sed -i -e '/register zookeeper/d' discovery/install/install.go"}
  '';

  tags = [ "builtinassets" ];

  ldflags =
    let
      t = "${goPackagePath}/vendor/github.com/prometheus/common/version";
    in
    [
      "-X ${t}.Version=${version}"
      "-X ${t}.Revision=unknown"
      "-X ${t}.Branch=unknown"
      "-X ${t}.BuildUser=nix@nixpkgs"
      "-X ${t}.BuildDate=unknown"
      "-X ${t}.GoVersion=${lib.getVersion go}"
    ];

  # only run this in the real build, not during the vendor build
  # this should probably be fixed in buildGoModule
  preBuild = ''
    if [ -d vendor ]; then make assets; fi
  '';

  preInstall = ''
    mkdir -p "$out/share/doc/prometheus" "$out/etc/prometheus"
    cp -a $src/documentation/* $out/share/doc/prometheus
    cp -a $src/console_libraries $src/consoles $out/etc/prometheus
  '';

  # doCheck = !stdenv.isDarwin; # https://hydra.nixos.org/build/130673870/nixlog/1
  doCheck = false;

  passthru.tests = { inherit (nixosTests) prometheus; };

  meta = with lib; {
    description = "Service monitoring system and time series database";
    homepage = "https://prometheus.io";
    license = licenses.asl20;
    maintainers = with maintainers; [ benley fpletz globin willibutz Frostman ];
    platforms = platforms.unix;
  };
}