mirror of
https://github.com/prometheus/node_exporter.git
synced 2025-01-11 22:07:32 -08:00
alerts: exclude iowait from NodeCPUHighUsage alert (#3203)
Signed-off-by: Jan Breitkopf <jan.breitkopf@prorocketeers.com>
This commit is contained in:
parent
2604d19246
commit
a38a5d7b48
|
@ -312,7 +312,7 @@
|
|||
{
|
||||
alert: 'NodeCPUHighUsage',
|
||||
expr: |||
|
||||
sum without(mode) (avg without (cpu) (rate(node_cpu_seconds_total{%(nodeExporterSelector)s, mode!="idle"}[2m]))) * 100 > %(cpuHighUsageThreshold)d
|
||||
sum without(mode) (avg without (cpu) (rate(node_cpu_seconds_total{%(nodeExporterSelector)s, mode!~"idle|iowait"}[2m]))) * 100 > %(cpuHighUsageThreshold)d
|
||||
||| % $._config,
|
||||
'for': '15m',
|
||||
labels: {
|
||||
|
|
Loading…
Reference in a new issue