mirror of
https://github.com/samber/awesome-prometheus-alerts.git
synced 2026-06-24 02:17:00 +08:00
added alerts to cortex (#240)
* added alerts to cortex * Update rules.yml Co-authored-by: apmbktf <andre.pasqualinoto-martins@itau-unibanco.com.br> Co-authored-by: Samuel Berthe <dev@samuel-berthe.fr>
This commit is contained in:
parent
7304d40539
commit
b47359c2fd
1 changed files with 9 additions and 0 deletions
|
|
@ -2027,3 +2027,12 @@ groups:
|
||||||
description: Cortex is failing when sengin alert notifications (instance {{ $labels.instance }})
|
description: Cortex is failing when sengin alert notifications (instance {{ $labels.instance }})
|
||||||
query: rate(cortex_prometheus_notifications_errors_total[5m]) > 0
|
query: rate(cortex_prometheus_notifications_errors_total[5m]) > 0
|
||||||
severity: critical
|
severity: critical
|
||||||
|
- name: Cortex ingester unhealthy
|
||||||
|
description: Cortex has an unhealthy ingester
|
||||||
|
query: cortex_ring_members{state="Unhealthy", name="ingester"} > 0
|
||||||
|
severity: critical
|
||||||
|
- name: Cortex frontend queries stuck
|
||||||
|
description: There are queued up queries in query-frontend.
|
||||||
|
query: sum by (job) (cortex_query_frontend_queue_length) > 0
|
||||||
|
severity: critical
|
||||||
|
for: 5m
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue