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";
|
2021-05-11 07:36:39 +03:00
|
|
|
version = "0.3.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}";
|
2021-05-11 07:36:39 +03:00
|
|
|
sha256 = "0nhww7pbyqpiikcli1ysqa15d4y76h3jaij1j0sj8i3mhv1nsjz9";
|
2016-11-27 22:26:33 +03:00
|
|
|
};
|
|
|
|
|
2021-05-11 07:36:39 +03:00
|
|
|
vendorSha256 = "1fiy6x06mqxbv9c4rxfl4q7hvblbzhknkpcp0alz61f3fk5wxsgp";
|
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
|
|
|
};
|
|
|
|
}
|