Filter out brq and tap devices from net interfaces monitoring

The computes create a ton of tap devices, and we are not entirely
interested right time on brq either.
Let's filter out them and just gather stats from regular interfaces.

Change-Id: I6a5360e1f928c8b8db73b0273d4f1c8fdd5935e2
This commit is contained in:
Ricardo Carrillo Cruz 2016-10-18 02:40:26 +02:00
parent 6e48b02f4f
commit a33ff0a83c

View File

@ -65,14 +65,16 @@ add_ds_graph "Host MIB - Available Disk Space" "Available Disk Space" \
SNMP_QUERY_ID=`php -q add_graphs.php --host-id=$HOST_ID --list-snmp-queries | \
grep "SNMP - Interface Statistics"|cut -f 1`
for $iface in $(php -q /usr/share/cacti/cli/add_graphs.php --host-id=$HOST_ID --snmp-field=ifName --list-snmp-values | grep -v tap| grep -v brq) ; do
add_ds_graph "Interface - Traffic (bits/sec)" "In/Out Bits (64-bit Counters)" \
"ifOperStatus" "Up"
"ifName" "$iface"
add_ds_graph "Interface - Errors/Discards" "In/Out Errors/Discarded Packets" \
"ifOperStatus" "Up"
"ifName" "$iface"
add_ds_graph "Interface - Unicast Packets" "In/Out Unicast Packets" \
"ifOperStatus" "Up"
"ifName" "$iface"
add_ds_graph "Interface - Non-Unicast Packets" "In/Out Non-Unicast Packets" \
"ifOperStatus" "Up"
"ifName" "$iface"
done
SNMP_QUERY_ID=`php -q add_graphs.php --host-id=$HOST_ID --list-snmp-queries | \
grep "ucd/net - Get IO Devices"|cut -f 1`