mirror of
https://github.com/samber/awesome-prometheus-alerts.git
synced 2026-06-24 18:36:59 +08:00
Improves Juniper rules
This commit is contained in:
parent
e17edc9e99
commit
ab6612b94f
1 changed files with 10 additions and 6 deletions
|
|
@ -421,8 +421,12 @@ services:
|
||||||
- name: Switch is down
|
- name: Switch is down
|
||||||
description: The switch appears to be down
|
description: The switch appears to be down
|
||||||
query: junos_up == 0
|
query: junos_up == 0
|
||||||
severity: critical
|
severity: error
|
||||||
- name: High Bandwith Usage 10GiB
|
- name: High Bandwith Usage 1GiB
|
||||||
description: Interface is highly saturated for at least 2 min. (> 9.5GiB/s)
|
description: Interface is highly saturated for at least 1 min. (> 0.90GiB/s)
|
||||||
query: 'irate(junos_interface_transmit_bytes[2m]) * 8 > 1e+10 * 0.95'
|
query: 'irate(junos_interface_transmit_bytes[1m]) * 8 > 1e+9 * 0.90'
|
||||||
severity: critical
|
severity: error
|
||||||
|
- name: High Bandwith Usage 1GiB
|
||||||
|
description: Interface is getting saturated for at least 1 min. (> 0.80GiB/s)
|
||||||
|
query: 'irate(junos_interface_transmit_bytes[1m]) * 8 > 1e+9 * 0.80'
|
||||||
|
severity: warning
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue