I need to disable alerts on certain network interfaces such as 'Problem name: Interface vnet0: High bandwidth usage (>90%)'
What I've done is: Templates -> Linux by Zabbix agent -> {$NET.IF.IFNAME.NOT_MATCHES} -> to change:
(^Software Loopback Interface|^NULL[0-9.]*$|^[Ll]o[0-9.]*$|^[Ss]ystem$|^Nu[0-9.]*$|^veth[0-9A-z]+$|docker[0-9]+|br-[a-z0-9]{12})
to:
(^Software Loopback Interface|^NULL[0-9.]*$|^[Ll]o[0-9.]*$|^[Ss]ystem$|^Nu[0-9.]*$|^veth[0-9A-z]+$|docker[0-9]+|br-[a-z0-9]{12}|^vnet.*$|^vnet0.*$)
Yet when I run a test using iperf3 to saturate the interface, I continue to get alerts for the vnet* devices.
Can anyone tell me if my assumption is incorrect? And if so, how should I go about this?
What I've done is: Templates -> Linux by Zabbix agent -> {$NET.IF.IFNAME.NOT_MATCHES} -> to change:
(^Software Loopback Interface|^NULL[0-9.]*$|^[Ll]o[0-9.]*$|^[Ss]ystem$|^Nu[0-9.]*$|^veth[0-9A-z]+$|docker[0-9]+|br-[a-z0-9]{12})
to:
(^Software Loopback Interface|^NULL[0-9.]*$|^[Ll]o[0-9.]*$|^[Ss]ystem$|^Nu[0-9.]*$|^veth[0-9A-z]+$|docker[0-9]+|br-[a-z0-9]{12}|^vnet.*$|^vnet0.*$)
Yet when I run a test using iperf3 to saturate the interface, I continue to get alerts for the vnet* devices.
Can anyone tell me if my assumption is incorrect? And if so, how should I go about this?
Comment