blob: e60e4f3d062f0df5a632f872e6d0e6791c56fda1 (
about) (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
|
{
lib,
buildGoModule,
fetchFromGitHub,
}:
let
version = "1.5.0";
src = fetchFromGitHub {
owner = "tynany";
repo = "frr_exporter";
rev = "v${version}";
hash = "sha256-lGS3/lKtNRmG8zM2V1I9vXhMXoqjMHchHZdag0qECR4=";
};
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";
};
}
|