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";
|
2023-06-12 04:14:20 +00:00
|
|
|
version = "0.6.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}";
|
2023-06-12 04:14:20 +00:00
|
|
|
sha256 = "sha256-5tFhk62ewRE87lxgVM2bytV9GbXT5iAwbJqklohYDvM=";
|
2016-11-27 19:26:33 +00:00
|
|
|
};
|
|
|
|
|
2023-06-12 04:14:20 +00:00
|
|
|
vendorHash = "sha256-Hij3lh92OCH+sTrzNl/KkjLAhPGffzzmxhPDO2wG0gA=";
|
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
|
|
|
};
|
|
|
|
}
|