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 12:41:18 +00:00
|
|
|
pname = "prometheus-json-exporter";
|
2022-07-29 17:33:25 +00:00
|
|
|
version = "0.5.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}";
|
2022-07-29 17:33:25 +00:00
|
|
|
sha256 = "sha256-33cu2DG6kgzCVQPaN9L8f/Iq76RqDPa+kE7qMt8czhI=";
|
2016-11-27 19:26:33 +00:00
|
|
|
};
|
|
|
|
|
2022-07-29 17:33:25 +00:00
|
|
|
vendorSha256 = "sha256-aMpJaxyBBfpsRJTxAO05926tQSt8qQoDDzLFbX4qwWc=";
|
2018-08-20 23:42:18 +00:00
|
|
|
|
2020-06-18 10:48:40 +00:00
|
|
|
passthru.tests = { inherit (nixosTests.prometheus-exporters) json; };
|
|
|
|
|
2018-08-20 23:41:15 +00: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-20 23:41:15 +00:00
|
|
|
license = licenses.asl20;
|
|
|
|
maintainers = with maintainers; [ willibutz ];
|
2022-05-05 00:46:39 +00:00
|
|
|
mainProgram = "json_exporter";
|
2016-11-27 19:26:33 +00:00
|
|
|
};
|
|
|
|
}
|