nixpkgs/pkgs/servers/monitoring/prometheus/prom2json.nix

24 lines
587 B
Nix
Raw Normal View History

2021-05-11 05:27:31 +00:00
{ lib, buildGoModule, fetchFromGitHub }:
2016-06-05 11:44:04 +00:00
2021-05-11 05:27:31 +00:00
buildGoModule rec {
pname = "prom2json";
2021-05-11 05:27:31 +00:00
version = "1.3.0";
2016-06-05 11:44:04 +00:00
src = fetchFromGitHub {
2021-05-11 05:27:31 +00:00
rev = "v${version}";
owner = "prometheus";
repo = "prom2json";
2021-05-11 05:27:31 +00:00
sha256 = "09glf7br1a9k6j2hs94l2k4mlmlckdz5c9v6qg618c2nd4rk1mz6";
2016-06-05 11:44:04 +00:00
};
2021-05-11 05:27:31 +00:00
vendorSha256 = null;
2016-06-05 11:44:04 +00:00
meta = with lib; {
2016-06-05 11:44:04 +00:00
description = "Tool to scrape a Prometheus client and dump the result as JSON";
homepage = "https://github.com/prometheus/prom2json";
2016-06-05 11:44:04 +00:00
license = licenses.asl20;
maintainers = with maintainers; [ benley ];
platforms = platforms.unix;
};
}