mirror of
https://github.com/samber/awesome-prometheus-alerts.git
synced 2026-06-25 02:46:59 +08:00
fix alert description
This commit is contained in:
parent
3358a43888
commit
965fefab89
1 changed files with 2 additions and 2 deletions
|
|
@ -170,8 +170,8 @@ groups:
|
||||||
description: CPU load is > 80%
|
description: CPU load is > 80%
|
||||||
query: '100 - (avg by(instance) (rate(node_cpu_seconds_total{mode="idle"}[5m])) * 100) > 80'
|
query: '100 - (avg by(instance) (rate(node_cpu_seconds_total{mode="idle"}[5m])) * 100) > 80'
|
||||||
severity: warning
|
severity: warning
|
||||||
- name: CPU steal
|
- name: CPU steal noisy neighbor
|
||||||
description: CPU steal is > 10%
|
description: CPU steal is > 10%. A noisy neighbor is killing VM performances or a spot instance may be out of credit.
|
||||||
query: 'avg by(instance) (rate(node_cpu_seconds_total{mode="steal"}[5m])) * 100 > 10'
|
query: 'avg by(instance) (rate(node_cpu_seconds_total{mode="steal"}[5m])) * 100 > 10'
|
||||||
severity: warning
|
severity: warning
|
||||||
- name: Host context switching
|
- name: Host context switching
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue