File tree Expand file tree Collapse file tree 2 files changed +14
-0
lines changed
etc/kayobe/kolla/config/prometheus Expand file tree Collapse file tree 2 files changed +14
-0
lines changed Original file line number Diff line number Diff line change @@ -96,6 +96,15 @@ groups:
96
96
summary: Host clock not synchronising (instance {{ $labels.instance }})
97
97
description: "Clock not synchronising. Ensure NTP is configured on this host."
98
98
99
+ - alert: HostNetworkBondDegraded
100
+ expr: (node_bonding_active - node_bonding_slaves) != 0
101
+ for: 2m
102
+ labels:
103
+ severity: warning
104
+ annotations:
105
+ summary: Host network bond degraded (instance {{ $labels.instance }})
106
+ description: "Bond {{ $labels.master }} degraded on {{ $labels.instance }}"
107
+
99
108
- alert: HostConntrackLimit
100
109
expr: node_nf_conntrack_entries / node_nf_conntrack_entries_limit > 0.8
101
110
for: 5m
Original file line number Diff line number Diff line change
1
+ ---
2
+ features :
3
+ - |
4
+ Adds a new Prometheus alert ``HostNetworkBondDegraded`` which will be
5
+ raised when at least one bond member is down.
You can’t perform that action at this time.
0 commit comments