prometheus-sachet: init at 0.3.1

This commit is contained in:
Gauvain 'GovanifY' Roussel-Tarbouriech 2021-07-09 14:22:07 +02:00 committed by Winter
parent 7d2f19cb70
commit 6953eca70d
2 changed files with 26 additions and 0 deletions

View file

@ -0,0 +1,25 @@
{ lib
, buildGoModule
, fetchFromGitHub
}:
buildGoModule rec {
pname = "sachet";
version = "0.3.1";
src = fetchFromGitHub {
owner = "messagebird";
repo = pname;
rev = version;
sha256 = "sha256-zcFViE1/B+wrkxZ3YIyfy2IBbxLvXOf8iK/6eqZb1ZQ=";
};
vendorSha256 = null;
meta = with lib; {
description = "An SMS alerting tool for Prometheus's Alertmanager";
homepage = "https://github.com/messagebird/sachet";
license = licenses.bsd2;
maintainers = with maintainers; [ govanify ];
};
}

View file

@ -23328,6 +23328,7 @@ with pkgs;
prometheus-redis-exporter = callPackage ../servers/monitoring/prometheus/redis-exporter.nix { };
prometheus-rabbitmq-exporter = callPackage ../servers/monitoring/prometheus/rabbitmq-exporter.nix { };
prometheus-rtl_433-exporter = callPackage ../servers/monitoring/prometheus/rtl_433-exporter.nix { };
prometheus-sachet = callPackage ../servers/monitoring/prometheus/sachet.nix { };
prometheus-script-exporter = callPackage ../servers/monitoring/prometheus/script-exporter.nix { };
prometheus-smartctl-exporter = callPackage ../servers/monitoring/prometheus/smartctl-exporter { };
prometheus-smokeping-prober = callPackage ../servers/monitoring/prometheus/smokeping-prober.nix { };