Skip to content

Commit

Permalink
Add NodeDiskIOSaturation alert
Browse files Browse the repository at this point in the history
Signed-off-by: Vitaly Zhuravlev <v-zhuravlev@users.noreply.github.com>
  • Loading branch information
v-zhuravlev committed Mar 27, 2023
1 parent e2e7864 commit af23597
Showing 1 changed file with 18 additions and 1 deletion.
19 changes: 18 additions & 1 deletion docs/node-mixin/alerts/alerts.libsonnet
Original file line number Diff line number Diff line change
Expand Up @@ -333,10 +333,27 @@
severity: 'warning',
},
annotations: {
summary: 'Host is running out of memory',
summary: 'Host is running out of memory.',
description: 'Memory is filling up at {{ $labels.instance }}, has been above 90% for the last 15 minutes, is currently at {{ printf "%.2f" $value }}%.',
},
},
{
alert: 'NodeDiskIOSaturation',
expr: |||
rate(node_disk_io_time_weighted_seconds_total{%(nodeExporterSelector)s}[5m]) > 10
||| % $._config,
'for': '30m',
labels: {
severity: 'warning',
},
annotations: {
summary: 'Disk IO queue is high.',
description: |||
Disk IO queue (aqu-sq) is high on {{ $labels.device }} at {{ $labels.instance }}, has been above 10 for the last 15 minutes, is currently at {{ printf "%.2f" $value }}%.
This symptom might indicate disk saturation.,
|||
},
},
{
alert: 'NodeSystemdServiceFailed',
expr: |||
Expand Down

0 comments on commit af23597

Please sign in to comment.