mirror of
https://github.com/samber/awesome-prometheus-alerts.git
synced 2026-06-26 11:27:00 +08:00
Add HostNetworkTransmitErrors and HostNetworkReceiveErrors rules
This commit is contained in:
parent
e9e861cfcb
commit
945aabbbfb
1 changed files with 8 additions and 0 deletions
|
|
@ -211,6 +211,14 @@ groups:
|
|||
description: OOM kill detected
|
||||
query: 'increase(node_vmstat_oom_kill[30m]) > 1'
|
||||
severity: warning
|
||||
- name: Host Network Receive Errors
|
||||
description: '{{ $labels.instance}}s interface {{ $labels.device }} has encountered {{ printf "%.0f" $value }} receive errors in the last five minutes.'
|
||||
query: 'increase(node_network_receive_errs_total[5m])'
|
||||
severity: warning
|
||||
- name: Host Network Transmit Errors
|
||||
description: '{{ $labels.instance}}s interface {{ $labels.device }} has encountered {{ printf "%.0f" $value }} receive errors in the last five minutes.'
|
||||
query: 'increase(node_network_transmit_errs_total[5m])'
|
||||
severity: warning
|
||||
|
||||
- name: Docker containers
|
||||
exporters:
|
||||
|
|
|
|||
Loading…
Reference in a new issue