From 3c61dc9cc35ed201877d81b1b7ad848f1ac9855e Mon Sep 17 00:00:00 2001 From: Azat Bahawi Date: Thu, 2 May 2024 14:30:08 +0300 Subject: 2024-05-02 --- modules/alertmanager.nix | 14 ++++++++++++++ 1 file changed, 14 insertions(+) (limited to 'modules/alertmanager.nix') diff --git a/modules/alertmanager.nix b/modules/alertmanager.nix index a3457bc..022f631 100644 --- a/modules/alertmanager.nix +++ b/modules/alertmanager.nix @@ -3,6 +3,8 @@ inputs, lib, libNginx, + pkgs, + this, ... }: with lib; @@ -84,5 +86,17 @@ in ntfyPriority = "high"; envFile = "/dev/null"; }; + + topology = with cfg; { + nodes.${this.hostname}.services.alertmanager = { + name = "Alertmanager"; + icon = pkgs.fetchurl { + url = "https://www.svgrepo.com/download/354219/prometheus.svg"; + sha256 = "sha256-4n3v95vfHYz65Hh/8BeRf4T++EGdOLKHuwVuusYt9dc="; + }; + info = domain; + details.listen.text = "127.0.0.1:${toString port}"; + }; + }; }; } -- cgit v1.2.3