mirror of
https://github.com/samber/awesome-prometheus-alerts.git
synced 2026-06-21 08:57:19 +08:00
Fix "greater than" value
This commit is contained in:
parent
4b22c078ea
commit
8912db93bc
1 changed files with 1 additions and 1 deletions
|
|
@ -213,7 +213,7 @@ groups:
|
|||
severity: info
|
||||
- name: Host EDAC Uncorrectable Errors detected
|
||||
description: '{{ $labels.instance }} has had {{ printf "%.0f" $value }} uncorrectable memory errors reported by EDAC in the last 5 minutes.'
|
||||
query: 'node_edac_uncorrectable_errors_total > 1'
|
||||
query: 'node_edac_uncorrectable_errors_total >= 1'
|
||||
severity: warning
|
||||
|
||||
- name: Docker containers
|
||||
|
|
|
|||
Loading…
Reference in a new issue