mirror of
https://github.com/samber/awesome-prometheus-alerts.git
synced 2026-06-23 18:06:58 +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
|
severity: info
|
||||||
- name: Host EDAC Uncorrectable Errors detected
|
- 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.'
|
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
|
severity: warning
|
||||||
|
|
||||||
- name: Docker containers
|
- name: Docker containers
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue