Page 1 of 1
Network switch/router interface % bandwidth ...
Posted: Thu Oct 25, 2018 4:29 am
by xpertech
I'm using network switch/router wizard (
https://youtu.be/iFNij0mkwm8), but is there possible to monitor interface in % bandwidth usage? (in percentage rather than speed)
Re: Network switch/router interface % bandwidth ...
Posted: Thu Oct 25, 2018 3:27 pm
by tgriep
You would have to use a different plugin to show the Bandwidth percentage.
This plugin will show the traffic in both formats.
https://exchange.nagios.org/directory/P ... 64/details
The example below is testing a network port called eno16777736 and displaying the units as megabits/s.
Code: Select all
./check_iftraffic64.pl -H 192.168.112.130 -C public -b 100 -u m -M 100000000 -i eno16777736
Code: Select all
OK - Average IN: 1.40MB (11.18%), Average OUT: 294.49KB (2.36%)Total RX: 4.03GBytes, Total TX: 828.75MBytes|inUsage=11.18%;85;98 outUsage=2.36%;85;98 inBandwidth=1397570.01B outBandwidth=294487.40B inAbsolut=4029205091c outAbsolut=828748466c
You would have to change the command for your needs.
Try it out.