Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion etc/kayobe/kolla/config/prometheus/ceph.rules
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,7 @@ groups:

# alert on nic packet errors and drops rates > 1 packet/s
- alert: NetworkPacketsDropped
expr: irate(node_network_receive_drop_total{device=~"en.*|eth.*"}[5m]) + irate(node_network_transmit_drop_total{device=~"en.*|eth.*"}[5m]) > 1
expr: irate(node_network_receive_drop_total{device!~"lo|br.*|.*-ovs|tap.*"}[5m]) + irate(node_network_transmit_drop_total{device!~"lo|br.*|.*-ovs|tap.*"}[5m]) > 1
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This will catch, among others:

bond.*
docker0
genev_sys_6081
ovs-system
p-brbond.*
qbr.*
qvb.*
vxlan_sys_4789

The previous regex has already been filtering out OVS bridges - I thought we were only expanding it with |bond.*.

Does by the way |ib.* make sense too?

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Perhaps this needs to be addressed. Could be a follow up?

labels:
severity: warning
annotations:
Expand Down