Improves Juniper rules

This commit is contained in:
Samuel Berthe 2019-05-21 11:57:53 +02:00
parent e17edc9e99
commit ab6612b94f

View file

@ -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