diff --git a/modules/nixos/monitor/default.nix b/modules/nixos/monitor/default.nix index 5b9d31a..a8386bd 100644 --- a/modules/nixos/monitor/default.nix +++ b/modules/nixos/monitor/default.nix @@ -120,11 +120,12 @@ in webhook_configs = [ { url = "${ntfyUrl}/prometheus-alerts?tpl=yes&m=${lib.escapeURL '' - {{range .alerts}}{{ if eq .status "resolved" }}✅{{ else }}{{ if eq .status "firing" }}🔥{{end}}{{end}}{{.labels.alertname}} - {{.annotations.summary}} - {{end}}''}"; + {{ if eq .truncatedAlerts 0 }}{{ else }}{{.truncatedAlerts}} truncated + {{end}}{{range .alerts}}{{ if eq .status "resolved" }}✅{{ else }}{{ if eq .status "firing" }}🔥{{end}}{{end}}{{.labels.alertname}} + {{.annotations.summary}} + {{end}}''}"; send_resolved = true; - max_alerts = 5; + max_alerts = 10; } ]; }