7d988867ff
This is a useful utility for monitoring network performance over time using a combination of MTR and Prometheus. Also adding a service definition. Signed-off-by: Jakub Sokołowski <jakub@status.im>
26 lines
711 B
Nix
26 lines
711 B
Nix
{ lib, buildGoModule, fetchurl, fetchFromGitHub }:
|
|
|
|
buildGoModule rec {
|
|
pname = "mtr-exporter";
|
|
version = "0.1.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "mgumz";
|
|
repo = "mtr-exporter";
|
|
rev = "3ce854a53a44780d2294f59284d21b06aeae6940";
|
|
sha256 = "sha256-PZCSuvtTBD7yoUE1fR9Z/u3aa1BZgbrcj18smnWRYf4=";
|
|
};
|
|
|
|
vendorSha256 = "0njn0ac7j3lv8ax6jc3bg3hh96a42jal212qk6zxrd46nb5l1rj8";
|
|
|
|
meta = with lib; {
|
|
description = ''
|
|
Mtr-exporter periodically executes mtr to a given host and
|
|
provides the measured results as prometheus metrics.
|
|
'';
|
|
homepage = "https://github.com/mgumz/mtr-exporter";
|
|
license = licenses.bsd3;
|
|
maintainers = with maintainers; [ jakubgs ];
|
|
};
|
|
}
|