mirror of
https://github.com/samber/awesome-prometheus-alerts.git
synced 2026-06-23 01:47:17 +08:00
fix #236
This commit is contained in:
parent
72a0d78638
commit
075d85b2d6
1 changed files with 1 additions and 1 deletions
|
|
@ -270,7 +270,7 @@ groups:
|
||||||
for: 2m
|
for: 2m
|
||||||
- name: Host Network Interface Saturated
|
- name: Host Network Interface Saturated
|
||||||
description: 'The network interface "{{ $labels.device }}" on "{{ $labels.instance }}" is getting overloaded.'
|
description: 'The network interface "{{ $labels.device }}" on "{{ $labels.instance }}" is getting overloaded.'
|
||||||
query: '(rate(node_network_receive_bytes_total{device!~"^tap.*"}[1m]) + rate(node_network_transmit_bytes_total{device!~"^tap.*"}[1m])) / node_network_speed_bytes{device!~"^tap.*"} > 0.8 < 10000' # < to 10Gb to prevent +inf when max speed is unknown
|
query: '(rate(node_network_receive_bytes_total{device!~"^tap.*|^vnet.*|^veth.*|^tun.*"}[1m]) + rate(node_network_transmit_bytes_total{device!~"^tap.*|^vnet.*|^veth.*|^tun.*"}[1m])) / node_network_speed_bytes{device!~"^tap.*|^vnet.*|^veth.*|^tun.*"} > 0.8 < 10000' # < to 10Gb to prevent +inf when max speed is unknown
|
||||||
severity: warning
|
severity: warning
|
||||||
for: 1m
|
for: 1m
|
||||||
- name: Host Network Bond Degraded
|
- name: Host Network Bond Degraded
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue