From 495f51725b56b33b4f901be1dd2851a34518f812 Mon Sep 17 00:00:00 2001 From: Jeltz Date: Sun, 6 Jul 2025 23:03:08 +0200 Subject: [PATCH] monitoring: fix typo + increase threshold for load5 alert --- profiles/monitoring/rules/node.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/profiles/monitoring/rules/node.nix b/profiles/monitoring/rules/node.nix index 0b62631..efafc15 100644 --- a/profiles/monitoring/rules/node.nix +++ b/profiles/monitoring/rules/node.nix @@ -131,7 +131,7 @@ NodePhysicalComponentTooHot = { expr = '' - node_hwmon_temp_celsius > clamp_max(79, node_hwmon_temp_max_celsius) + node_hwmon_temp_celsius > clamp_max(node_hwmon_temp_max_celsius, 79) ''; for = "0m"; labels = critical; @@ -265,7 +265,7 @@ NodeLoad5Usage = { expr = '' node_load5 / ( - count without(cpu, mode) (node_cpu_seconds_total{mode="idle"})) > 1.1 + count without(cpu, mode) (node_cpu_seconds_total{mode="idle"})) > 1.25 ''; for = "1m"; labels = warning;