Merge pull request #36782 from mbode/prometheus_2_1_0
prometheus: add 2.1.0
This commit is contained in:
commit
ac037da8e6
2 changed files with 53 additions and 34 deletions
|
@ -1,42 +1,56 @@
|
||||||
{ stdenv, go, buildGoPackage, fetchFromGitHub }:
|
{ stdenv, go, buildGoPackage, fetchFromGitHub }:
|
||||||
|
|
||||||
buildGoPackage rec {
|
let
|
||||||
name = "prometheus-${version}";
|
|
||||||
version = "1.8.1";
|
|
||||||
rev = "v${version}";
|
|
||||||
|
|
||||||
goPackagePath = "github.com/prometheus/prometheus";
|
goPackagePath = "github.com/prometheus/prometheus";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
generic = { version, sha256, ... }@attrs:
|
||||||
inherit rev;
|
let attrs' = builtins.removeAttrs attrs ["version" "sha256"]; in
|
||||||
owner = "prometheus";
|
buildGoPackage ({
|
||||||
repo = "prometheus";
|
name = "prometheus-${version}";
|
||||||
|
|
||||||
|
inherit goPackagePath;
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
rev = "v${version}";
|
||||||
|
owner = "prometheus";
|
||||||
|
repo = "prometheus";
|
||||||
|
inherit sha256;
|
||||||
|
};
|
||||||
|
|
||||||
|
docheck = true;
|
||||||
|
|
||||||
|
buildFlagsArray = let t = "${goPackagePath}/version"; in ''
|
||||||
|
-ldflags=
|
||||||
|
-X ${t}.Version=${version}
|
||||||
|
-X ${t}.Revision=unknown
|
||||||
|
-X ${t}.Branch=unknown
|
||||||
|
-X ${t}.BuildUser=nix@nixpkgs
|
||||||
|
-X ${t}.BuildDate=unknown
|
||||||
|
-X ${t}.GoVersion=${stdenv.lib.getVersion go}
|
||||||
|
'';
|
||||||
|
|
||||||
|
preInstall = ''
|
||||||
|
mkdir -p "$bin/share/doc/prometheus" "$bin/etc/prometheus"
|
||||||
|
cp -a $src/documentation/* $bin/share/doc/prometheus
|
||||||
|
cp -a $src/console_libraries $src/consoles $bin/etc/prometheus
|
||||||
|
'';
|
||||||
|
|
||||||
|
meta = with stdenv.lib; {
|
||||||
|
description = "Service monitoring system and time series database";
|
||||||
|
homepage = https://prometheus.io;
|
||||||
|
license = licenses.asl20;
|
||||||
|
maintainers = with maintainers; [ benley fpletz ];
|
||||||
|
platforms = platforms.unix;
|
||||||
|
};
|
||||||
|
} // attrs');
|
||||||
|
in rec {
|
||||||
|
prometheus_1 = generic {
|
||||||
|
version = "1.8.1";
|
||||||
sha256 = "07xvpjhhxc0r73qfmkvf94zhv19zv76privw6blg35k5nxcnj7j4";
|
sha256 = "07xvpjhhxc0r73qfmkvf94zhv19zv76privw6blg35k5nxcnj7j4";
|
||||||
};
|
};
|
||||||
|
|
||||||
docheck = true;
|
prometheus_2 = generic {
|
||||||
|
version = "2.1.0";
|
||||||
buildFlagsArray = let t = "${goPackagePath}/version"; in ''
|
sha256 = "01pbqfp43qrqcgyidyg2lw9jnjdrv140vnmqmm49z0vhlkxkwlvw";
|
||||||
-ldflags=
|
|
||||||
-X ${t}.Version=${version}
|
|
||||||
-X ${t}.Revision=unknown
|
|
||||||
-X ${t}.Branch=unknown
|
|
||||||
-X ${t}.BuildUser=nix@nixpkgs
|
|
||||||
-X ${t}.BuildDate=unknown
|
|
||||||
-X ${t}.GoVersion=${stdenv.lib.getVersion go}
|
|
||||||
'';
|
|
||||||
|
|
||||||
preInstall = ''
|
|
||||||
mkdir -p "$bin/share/doc/prometheus" "$bin/etc/prometheus"
|
|
||||||
cp -a $src/documentation/* $bin/share/doc/prometheus
|
|
||||||
cp -a $src/console_libraries $src/consoles $bin/etc/prometheus
|
|
||||||
'';
|
|
||||||
|
|
||||||
meta = with stdenv.lib; {
|
|
||||||
description = "Service monitoring system and time series database";
|
|
||||||
homepage = https://prometheus.io;
|
|
||||||
license = licenses.asl20;
|
|
||||||
maintainers = with maintainers; [ benley fpletz ];
|
|
||||||
platforms = platforms.unix;
|
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -12596,8 +12596,13 @@ with pkgs;
|
||||||
|
|
||||||
postgresql_jdbc = callPackage ../servers/sql/postgresql/jdbc { };
|
postgresql_jdbc = callPackage ../servers/sql/postgresql/jdbc { };
|
||||||
|
|
||||||
|
inherit (callPackage ../servers/monitoring/prometheus {})
|
||||||
|
prometheus_1
|
||||||
|
prometheus_2
|
||||||
|
;
|
||||||
|
|
||||||
prom2json = callPackage ../servers/monitoring/prometheus/prom2json.nix { };
|
prom2json = callPackage ../servers/monitoring/prometheus/prom2json.nix { };
|
||||||
prometheus = callPackage ../servers/monitoring/prometheus { };
|
prometheus = prometheus_1;
|
||||||
prometheus-alertmanager = callPackage ../servers/monitoring/prometheus/alertmanager.nix { };
|
prometheus-alertmanager = callPackage ../servers/monitoring/prometheus/alertmanager.nix { };
|
||||||
prometheus-bind-exporter = callPackage ../servers/monitoring/prometheus/bind-exporter.nix { };
|
prometheus-bind-exporter = callPackage ../servers/monitoring/prometheus/bind-exporter.nix { };
|
||||||
prometheus-blackbox-exporter = callPackage ../servers/monitoring/prometheus/blackbox-exporter.nix { };
|
prometheus-blackbox-exporter = callPackage ../servers/monitoring/prometheus/blackbox-exporter.nix { };
|
||||||
|
|
Loading…
Reference in a new issue