Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
40 lines
1.0 KiB
Nix
40 lines
1.0 KiB
Nix
{
|
|
lib,
|
|
buildGoModule,
|
|
fetchFromGitHub,
|
|
}:
|
|
|
|
let
|
|
version = "1.8.1";
|
|
src = fetchFromGitHub {
|
|
owner = "tynany";
|
|
repo = "frr_exporter";
|
|
rev = "v${version}";
|
|
hash = "sha256-RURuJXAX1U1KPX0IJXs3OE1Rr7MV5xrhrew7mKfaeNM=";
|
|
};
|
|
in
|
|
buildGoModule {
|
|
pname = "prometheus-frr-exporter";
|
|
vendorHash = "sha256-T7zurp9Eh1OFuCwyYm3F+cfLi4xdXZyhme9++jxsrzQ=";
|
|
inherit src version;
|
|
|
|
ldflags = [
|
|
"-X github.com/prometheus/common/version.Version=${version}"
|
|
"-X github.com/prometheus/common/version.Revision=${src.rev}"
|
|
"-X github.com/prometheus/common/version.Branch=unknown"
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "Prometheus exporter for FRR version 3.0+";
|
|
longDescription = ''
|
|
Prometheus exporter for FRR version 3.0+ that collects metrics from the
|
|
FRR Unix sockets and exposes them via HTTP, ready for collecting by
|
|
Prometheus.
|
|
'';
|
|
homepage = "https://github.com/tynany/frr_exporter";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ javaes ];
|
|
mainProgram = "frr_exporter";
|
|
};
|
|
}
|