monitoring: fix typo + increase threshold for load5 alert

This commit is contained in:
jeltz 2025-07-06 23:03:08 +02:00
parent 4e6513466f
commit 495f51725b
Signed by: jeltz
GPG key ID: 800882B66C0C3326

View file

@ -131,7 +131,7 @@
NodePhysicalComponentTooHot = { NodePhysicalComponentTooHot = {
expr = '' 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"; for = "0m";
labels = critical; labels = critical;
@ -265,7 +265,7 @@
NodeLoad5Usage = { NodeLoad5Usage = {
expr = '' expr = ''
node_load5 / ( 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"; for = "1m";
labels = warning; labels = warning;