Merge pull request #272311 from clerie/prometheus-atlas-exporter-1.0.4
This commit is contained in:
commit
f996d87185
2 changed files with 23 additions and 0 deletions
22
pkgs/servers/monitoring/prometheus/atlas-exporter.nix
Normal file
22
pkgs/servers/monitoring/prometheus/atlas-exporter.nix
Normal file
|
@ -0,0 +1,22 @@
|
|||
{ lib, buildGoModule, fetchFromGitHub }:
|
||||
|
||||
buildGoModule rec {
|
||||
pname = "atlas-exporter";
|
||||
version = "1.0.4";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "czerwonk";
|
||||
repo = "atlas_exporter";
|
||||
rev = version;
|
||||
sha256 = "sha256-vhUhWO7fQpUHT5nyxbT8AylgUqDNZRSb+EGRNGZJ14E=";
|
||||
};
|
||||
|
||||
vendorHash = "sha256-tR+OHxj/97AixuAp0Kx9xQsKPAxpvF6hDha5BgMBha0=";
|
||||
|
||||
meta = with lib; {
|
||||
description = "Prometheus exporter for RIPE Atlas measurement results ";
|
||||
homepage = "https://github.com/czerwonk/atlas_exporter";
|
||||
license = licenses.lgpl3;
|
||||
maintainers = with maintainers; [ clerie ];
|
||||
};
|
||||
}
|
|
@ -27142,6 +27142,7 @@ with pkgs;
|
|||
prometheus-alertmanager = callPackage ../servers/monitoring/prometheus/alertmanager.nix { };
|
||||
prometheus-apcupsd-exporter = callPackage ../servers/monitoring/prometheus/apcupsd-exporter.nix { };
|
||||
prometheus-artifactory-exporter = callPackage ../servers/monitoring/prometheus/artifactory-exporter.nix { };
|
||||
prometheus-atlas-exporter = callPackage ../servers/monitoring/prometheus/atlas-exporter.nix { };
|
||||
prometheus-aws-s3-exporter = callPackage ../servers/monitoring/prometheus/aws-s3-exporter.nix { };
|
||||
prometheus-bind-exporter = callPackage ../servers/monitoring/prometheus/bind-exporter.nix { };
|
||||
prometheus-bird-exporter = callPackage ../servers/monitoring/prometheus/bird-exporter.nix { };
|
||||
|
|
Loading…
Reference in a new issue