Browse Source

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

pull/123/head
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

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

Loading…
Cancel
Save