prometheus-blackbox-exporter: init at 0.3.0

This commit is contained in:
Franz Pletz 2016-12-01 01:38:03 +01:00
parent ad54866896
commit b24b6bbfb0
No known key found for this signature in database
GPG Key ID: 846FDED7792617B4
2 changed files with 25 additions and 0 deletions

View File

@ -0,0 +1,24 @@
{ stdenv, lib, buildGoPackage, fetchFromGitHub }:
buildGoPackage rec {
name = "blackbox_exporter-${version}";
version = "0.3.0";
rev = version;
goPackagePath = "github.com/prometheus/blackbox_exporter";
src = fetchFromGitHub {
rev = "v${version}";
owner = "prometheus";
repo = "blackbox_exporter";
sha256 = "0imn7ggxl5zqp8i4i8pnsipacx28dirm1mdmmxxbxc5aal3b656m";
};
meta = with stdenv.lib; {
description = "Blackbox probing of endpoints over HTTP, HTTPS, DNS, TCP and ICMP";
homepage = https://github.com/prometheus/blackbox_exporter;
license = licenses.asl20;
maintainers = with maintainers; [ globin fpletz ];
platforms = platforms.unix;
};
}

View File

@ -10359,6 +10359,7 @@ in
prom2json = callPackage ../servers/monitoring/prometheus/prom2json.nix { };
prometheus = callPackage ../servers/monitoring/prometheus { };
prometheus-alertmanager = callPackage ../servers/monitoring/prometheus/alertmanager.nix { };
prometheus-blackbox-exporter = callPackage ../servers/monitoring/prometheus/blackbox-exporter.nix { };
prometheus-cli = callPackage ../servers/monitoring/prometheus/cli.nix { };
prometheus-collectd-exporter = callPackage ../servers/monitoring/prometheus/collectd-exporter.nix { };
prometheus-haproxy-exporter = callPackage ../servers/monitoring/prometheus/haproxy-exporter.nix { };