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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

24 lines
632 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";
2024-09-20 15:48:07 +00:00
version = "1.4.1";
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";
2024-09-20 15:48:07 +00:00
sha256 = "sha256-cKz+ZFQYjsL7dFfXXCrl4T8OuvQkdqVAotG9HRNtN7o=";
2016-06-05 11:44:04 +00:00
};
2024-09-20 15:48:07 +00:00
vendorHash = "sha256-pCy4oECZnvoODezUD1+lOT46yWUr78zvnHgEB2BJN3c=";
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";
mainProgram = "prom2json";
homepage = "https://github.com/prometheus/prom2json";
2016-06-05 11:44:04 +00:00
license = licenses.asl20;
maintainers = with maintainers; [ benley ];
};
}