Browse Source

Merge "Raise severity for System(Tx,Rx)PacketsDroppedTooHigh"

atp-proxy
Martin Polreich 7 years ago
parent
commit
06108aeacb
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      linux/meta/prometheus.yml

+ 2
- 2
linux/meta/prometheus.yml View File

if: rate(net_drop_in[1m]) > {{ net_rx_dropped_threshold }} if: rate(net_drop_in[1m]) > {{ net_rx_dropped_threshold }}
{% raw %} {% raw %}
labels: labels:
severity: warning
severity: critical
service: system service: system
annotations: annotations:
summary: 'Too many received packets dropped on {{ $labels.host }} for interface {{ $labels.interface }}' summary: 'Too many received packets dropped on {{ $labels.host }} for interface {{ $labels.interface }}'
if: rate(net_drop_out[1m]) > {{ net_tx_dropped_threshold }} if: rate(net_drop_out[1m]) > {{ net_tx_dropped_threshold }}
{% raw %} {% raw %}
labels: labels:
severity: warning
severity: critical
service: system service: system
annotations: annotations:
summary: 'Too many transmitted packets dropped on {{ $labels.host }} for interface {{ $labels.interface }}' summary: 'Too many transmitted packets dropped on {{ $labels.host }} for interface {{ $labels.interface }}'

Loading…
Cancel
Save