Hello,
I'm trying to make zabbix generate an aggregate graph of the bandwidth used by different hosts.
I have created an hostgroup with the hosts I need to monitor but here is the problem: my hosts use different interfaces to comunicate: some use eth0, some eth1 and some other bond0.
The function I'm using to get the data to create the aggregate graph is:
which collects data only from eth0 (in this case).
As you can imagine, hosts using eth1 or bond don't return any data so the graph generated is unreliable.
So here is my question: how can I generate an aggregate graph of bandwidth usage of hosts that comunicate/"send data" using different network interfaces?
Sorry about my terrible english, I hope my problema is clear
Thanks in advance.
Inc0
I'm trying to make zabbix generate an aggregate graph of the bandwidth used by different hosts.
I have created an hostgroup with the hosts I need to monitor but here is the problem: my hosts use different interfaces to comunicate: some use eth0, some eth1 and some other bond0.
The function I'm using to get the data to create the aggregate graph is:
Code:
grpsum["MyHostGroup","net.if.in[eth0,bytes]","last","0"]
As you can imagine, hosts using eth1 or bond don't return any data so the graph generated is unreliable.
So here is my question: how can I generate an aggregate graph of bandwidth usage of hosts that comunicate/"send data" using different network interfaces?
Sorry about my terrible english, I hope my problema is clear

Thanks in advance.
Inc0
Here is what I've done:
Comment