monitoring: fix typo + increase threshold for load5 alert
This commit is contained in:
parent
4e6513466f
commit
495f51725b
1 changed files with 2 additions and 2 deletions
|
@ -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;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue