2021-01-01 22:54:13 +00:00
|
|
|
{ lib, buildGoModule, fetchFromGitHub, nixosTests }:
|
2016-11-27 19:26:33 +00:00
|
|
|
|
2021-01-01 22:54:13 +00:00
|
|
|
buildGoModule rec {
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "prometheus-json-exporter";
|
2021-01-01 22:54:13 +00:00
|
|
|
version = "0.2.0";
|
2016-11-27 19:26:33 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
2021-01-01 22:54:13 +00:00
|
|
|
owner = "prometheus-community";
|
|
|
|
repo = "json_exporter";
|
|
|
|
rev = "v${version}";
|
|
|
|
sha256 = "1aabvd75a2223x5wnbyryigj7grw6l05jhr3g3s97b1f1hfigz6d";
|
2016-11-27 19:26:33 +00:00
|
|
|
};
|
|
|
|
|
2021-01-01 22:54:13 +00:00
|
|
|
vendorSha256 = "03kb0gklq08krl7qnvs7267siw1pkyy346b42dsk1d9gr5302wsw";
|
2018-08-21 00:42:18 +01:00
|
|
|
|
2020-06-18 11:48:40 +01:00
|
|
|
passthru.tests = { inherit (nixosTests.prometheus-exporters) json; };
|
|
|
|
|
2018-08-21 00:41:15 +01:00
|
|
|
meta = with lib; {
|
2016-11-27 19:26:33 +00:00
|
|
|
description = "A prometheus exporter which scrapes remote JSON by JSONPath";
|
2021-01-01 22:54:13 +00:00
|
|
|
homepage = "https://github.com/prometheus-community/json_exporter";
|
2018-08-21 00:41:15 +01:00
|
|
|
license = licenses.asl20;
|
|
|
|
maintainers = with maintainers; [ willibutz ];
|
2016-11-27 19:26:33 +00:00
|
|
|
};
|
|
|
|
}
|