mirror of
https://github.com/samber/awesome-prometheus-alerts.git
synced 2026-06-26 11:27:00 +08:00
fix 4 node yaml error
This commit is contained in:
parent
4cd3ff1d4a
commit
9809502c00
1 changed files with 4 additions and 4 deletions
|
|
@ -208,19 +208,19 @@ groups:
|
|||
query: 'increase(node_vmstat_oom_kill[5m]) > 0'
|
||||
severity: warning
|
||||
- name: Host EDAC Correctable Errors detected
|
||||
description: '{{ $labels.instance }} has had {{ printf "%.0f" $value }} correctable memory errors reported by EDAC in the last 5 minutes.'
|
||||
description: '{{ $labels.instance }} has had {{ printf \"%.0f\" $value }} correctable memory errors reported by EDAC in the last 5 minutes.'
|
||||
query: 'increase(node_edac_correctable_errors_total[5m]) > 0'
|
||||
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.'
|
||||
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 > 0'
|
||||
severity: warning
|
||||
- name: Host Network Receive Errors
|
||||
description: '{{ $labels.instance }} interface {{ $labels.device }} has encountered {{ printf "%.0f" $value }} receive errors in the last five minutes.'
|
||||
description: '{{ $labels.instance }} interface {{ $labels.device }} has encountered {{ printf \"%.0f\" $value }} receive errors in the last five minutes.'
|
||||
query: 'increase(node_network_receive_errs_total[5m]) > 0'
|
||||
severity: warning
|
||||
- name: Host Network Transmit Errors
|
||||
description: '{{ $labels.instance }} interface {{ $labels.device }} has encountered {{ printf "%.0f" $value }} transmit errors in the last five minutes.'
|
||||
description: '{{ $labels.instance }} interface {{ $labels.device }} has encountered {{ printf \"%.0f\" $value }} transmit errors in the last five minutes.'
|
||||
query: 'increase(node_network_transmit_errs_total[5m]) > 0'
|
||||
severity: warning
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue