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 {
|
2019-08-15 12:41:18 +00:00
|
|
|
pname = "prom2json";
|
2022-10-31 18:56:15 +00:00
|
|
|
version = "1.3.2";
|
2016-06-05 11:44:04 +00:00
|
|
|
|
2016-06-06 10:26:56 +00:00
|
|
|
src = fetchFromGitHub {
|
2021-05-11 05:27:31 +00:00
|
|
|
rev = "v${version}";
|
2016-06-06 10:26:56 +00:00
|
|
|
owner = "prometheus";
|
|
|
|
repo = "prom2json";
|
2022-10-31 18:56:15 +00:00
|
|
|
sha256 = "sha256-5RPpgUEFLecu0qRg7KSNLwdUEiXeebrGdP/udCtq4z0=";
|
2016-06-05 11:44:04 +00:00
|
|
|
};
|
|
|
|
|
2022-10-31 18:56:15 +00:00
|
|
|
vendorSha256 = "sha256-fPGkqrnl21as1xiT279qPzkz01tDNOSMcsm/DSNHDU0=";
|
2016-06-05 11:44:04 +00:00
|
|
|
|
2021-01-11 07:54:33 +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";
|
2020-04-01 01:11:51 +00:00
|
|
|
homepage = "https://github.com/prometheus/prom2json";
|
2016-06-05 11:44:04 +00:00
|
|
|
license = licenses.asl20;
|
|
|
|
maintainers = with maintainers; [ benley ];
|
|
|
|
platforms = platforms.unix;
|
|
|
|
};
|
|
|
|
}
|