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