The %-value of bandwidth usage is counted with bytes-in / speed, but in SNMP the speed-OID is in bits not bytes so the outcome is a factor 8 too small.
I can't imagine this hasn't been discovered yet by anyone, maybe it's a recently introduced bug in the newest version of check_graph_traffic.pl, or I missed someone elses post about this..
Anyway I simply changed the following line:
Hope this helps someone..
Regards
Menno
I can't imagine this hasn't been discovered yet by anyone, maybe it's a recently introduced bug in the newest version of check_graph_traffic.pl, or I missed someone elses post about this..
Anyway I simply changed the following line:
Code:
$speed_card = $result->{$OID_SPEED}; --> $speed_card = $result->{$OID_SPEED} / 8;
Regards
Menno
Comment