diff --git a/machines/fuuko/services/prometheus.nix b/machines/fuuko/services/prometheus.nix index 0c64d5a..ec12b64 100644 --- a/machines/fuuko/services/prometheus.nix +++ b/machines/fuuko/services/prometheus.nix @@ -140,13 +140,13 @@ in name = "NodeHighLoad"; expr = ''sum by (instance) (node_load15) / count by (instance) (node_cpu_seconds_total{mode="system"}) > 2''; for = "15m"; - description = "This node is having a per-core load ≥ 2 for the last 15 minutes."; + description = "Node {{ $labels.instance }} is having a per-core load ≥ 2 for the last 15 minutes."; } { name = "NodeHighMemory"; expr = ''(node_memory_MemTotal_bytes - node_memory_MemAvailable_bytes) / node_memory_MemTotal_bytes > 0.9''; for = "2m"; - description = "This node is using more than 90 % of available RAM."; + description = "Node {{ $labels.instance }} is using more than 90 % of available RAM."; } { name = "TP440ACPIBroken";