2021-01-25 08:26:54 +00:00
|
|
|
{ lib, buildGoModule, fetchFromGitHub, nixosTests }:
|
2019-11-15 11:21:39 +00:00
|
|
|
|
2020-12-10 20:27:51 +00:00
|
|
|
buildGoModule rec {
|
2019-11-15 11:21:39 +00:00
|
|
|
pname = "nginxlog_exporter";
|
2021-05-11 06:01:36 +01:00
|
|
|
version = "1.9.0";
|
2019-11-15 11:21:39 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "martin-helmich";
|
|
|
|
repo = "prometheus-nginxlog-exporter";
|
|
|
|
rev = "v${version}";
|
2021-05-11 06:01:36 +01:00
|
|
|
sha256 = "0kcwhaf9k7c1xsz78064qz5zb4x3xgi1ifi49qkwiaqrzx2xy26p";
|
2019-11-15 11:21:39 +00:00
|
|
|
};
|
|
|
|
|
2022-01-01 03:40:41 +00:00
|
|
|
vendorSha256 = "sha256-5C5xQx8I5aHgi9P5gpHmPw6nV76D68/agVAP1vGab4w=";
|
2019-11-15 11:21:39 +00:00
|
|
|
|
2020-12-10 20:27:51 +00:00
|
|
|
subPackages = [ "." ];
|
2019-11-15 11:21:39 +00:00
|
|
|
|
2020-12-13 17:26:13 +00:00
|
|
|
passthru.tests = { inherit (nixosTests.prometheus-exporters) nginxlog; };
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2019-11-15 11:21:39 +00:00
|
|
|
description = "Export metrics from Nginx access log files to Prometheus";
|
|
|
|
homepage = "https://github.com/martin-helmich/prometheus-nginxlog-exporter";
|
|
|
|
license = licenses.asl20;
|
|
|
|
maintainers = with maintainers; [ mmahut ];
|
|
|
|
};
|
|
|
|
}
|