mirror of
https://github.com/samber/awesome-prometheus-alerts.git
synced 2026-06-21 08:57:19 +08:00
Fix typo in description (#242)
This commit is contained in:
parent
a225087b06
commit
abfae043bb
1 changed files with 2 additions and 2 deletions
|
|
@ -251,12 +251,12 @@ groups:
|
|||
query: 'node_edac_uncorrectable_errors_total > 0'
|
||||
severity: warning
|
||||
- name: Host Network Receive Errors
|
||||
description: 'Host {{ $labels.instance }} interface {{ $labels.device }} has encountered {{ printf "%.0f" $value }} receive errors in the last five minutes.'
|
||||
description: 'Host {{ $labels.instance }} interface {{ $labels.device }} has encountered {{ printf "%.0f" $value }} receive errors in the last two minutes.'
|
||||
query: 'rate(node_network_receive_errs_total[2m]) / rate(node_network_receive_packets_total[2m]) > 0.01'
|
||||
severity: warning
|
||||
for: 2m
|
||||
- name: Host Network Transmit Errors
|
||||
description: 'Host {{ $labels.instance }} interface {{ $labels.device }} has encountered {{ printf "%.0f" $value }} transmit errors in the last five minutes.'
|
||||
description: 'Host {{ $labels.instance }} interface {{ $labels.device }} has encountered {{ printf "%.0f" $value }} transmit errors in the last two minutes.'
|
||||
query: 'rate(node_network_transmit_errs_total[2m]) / rate(node_network_transmit_packets_total[2m]) > 0.01'
|
||||
severity: warning
|
||||
for: 2m
|
||||
|
|
|
|||
Loading…
Reference in a new issue