mirror of
https://github.com/samber/awesome-prometheus-alerts.git
synced 2026-06-26 19:37:27 +08:00
Update rules.yml
This commit is contained in:
parent
68d45a0856
commit
92ae45a604
1 changed files with 1 additions and 1 deletions
|
|
@ -350,7 +350,7 @@ groups:
|
||||||
This rule can be very noisy in dynamic infra with legitimate container start/stop/deployment.
|
This rule can be very noisy in dynamic infra with legitimate container start/stop/deployment.
|
||||||
- name: Container High CPU utilization
|
- name: Container High CPU utilization
|
||||||
description: Container CPU utilization is above 80%
|
description: Container CPU utilization is above 80%
|
||||||
query: '(sum(rate(container_cpu_usage_seconds_total{name!=""}[3m])) BY (instance, name) * 100) > 80'
|
query: '(sum(rate(container_cpu_usage_seconds_total{pod!=""}[3m])) by (instance, pod) / sum(container_spec_cpu_quota / container_spec_cpu_period) by (instance, pod) * 100) > 80'
|
||||||
severity: warning
|
severity: warning
|
||||||
for: 2m
|
for: 2m
|
||||||
- name: Container High Memory usage
|
- name: Container High Memory usage
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue