mirror of
https://github.com/samber/awesome-prometheus-alerts.git
synced 2026-06-23 18:06:58 +08:00
Fixed time interval (10min->10m)
This commit is contained in:
parent
d39acd0a86
commit
f7f94ed81e
1 changed files with 2 additions and 2 deletions
|
|
@ -281,7 +281,7 @@ services:
|
||||||
severity: warning
|
severity: warning
|
||||||
- name: MongoDB cursors timeouts
|
- name: MongoDB cursors timeouts
|
||||||
description: Too many cursors are timing out
|
description: Too many cursors are timing out
|
||||||
query: 'increase(mongodb_metrics_cursor_timed_out_total[10min]) > 100'
|
query: 'increase(mongodb_metrics_cursor_timed_out_total[10m]) > 100'
|
||||||
severity: warning
|
severity: warning
|
||||||
- name: MongoDB too many connections
|
- name: MongoDB too many connections
|
||||||
description: Too many connections
|
description: Too many connections
|
||||||
|
|
@ -588,5 +588,5 @@ services:
|
||||||
- rules:
|
- rules:
|
||||||
- name: CoreDNS Panic Count
|
- name: CoreDNS Panic Count
|
||||||
description: Number of CoreDNS panics encountered
|
description: Number of CoreDNS panics encountered
|
||||||
query: 'increase(coredns_panic_count_total[10min]) > 0'
|
query: 'increase(coredns_panic_count_total[10m]) > 0'
|
||||||
severity: error
|
severity: error
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue