2021-01-25 08:26:54 +00:00
|
|
|
{ lib, buildGoPackage, fetchFromGitHub }:
|
2016-06-05 12:44:04 +01:00
|
|
|
|
|
|
|
buildGoPackage rec {
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "prom2json";
|
2016-06-05 12:44:04 +01:00
|
|
|
version = "0.1.0";
|
2019-09-09 00:38:31 +01:00
|
|
|
rev = version;
|
2016-06-05 12:44:04 +01:00
|
|
|
|
|
|
|
goPackagePath = "github.com/prometheus/prom2json";
|
|
|
|
|
2016-06-06 11:26:56 +01:00
|
|
|
src = fetchFromGitHub {
|
2016-06-05 12:44:04 +01:00
|
|
|
inherit rev;
|
2016-06-06 11:26:56 +01:00
|
|
|
owner = "prometheus";
|
|
|
|
repo = "prom2json";
|
2016-06-05 12:44:04 +01:00
|
|
|
sha256 = "0wwh3mz7z81fwh8n78sshvj46akcgjhxapjgfic5afc4nv926zdl";
|
|
|
|
};
|
|
|
|
|
2016-09-10 11:04:13 +01:00
|
|
|
goDeps = ./prom2json_deps.nix;
|
2016-06-05 12:44:04 +01:00
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2016-06-05 12:44:04 +01:00
|
|
|
description = "Tool to scrape a Prometheus client and dump the result as JSON";
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://github.com/prometheus/prom2json";
|
2016-06-05 12:44:04 +01:00
|
|
|
license = licenses.asl20;
|
|
|
|
maintainers = with maintainers; [ benley ];
|
|
|
|
platforms = platforms.unix;
|
|
|
|
};
|
|
|
|
}
|