MRTG and Big Brother
MRTG is a cool application that creates trend graphs for just about anything. Out-of-the-box MRTG graphs I/O in bits/second that travel through the interface cards on any SNMP enabled network device, just like the image below:

After MRTG has been installed, you need to create an MRTG configuration file for the device you're monitoring. After the configuration file has been created, you need to run MRTG against it to produce trending graphs. And, after you've produced the trending graphs, you need to integrate those graphs into the BBDISPLAY with an extension. from the Big Brother user community.
The steps below take you through that process:
1. Create the device configuration file with the $MRTGHOME/bin/cfgmaker script, like:
cfgmaker --global 'WorkDir: /var/www/html/mrtg' \
--global 'Options[_]: bits,growright' \
--output /var/www/html/mrtg/router.abc.xyz.cfg \
public@router.abc.xyz
Windows way:
perl cfgmaker public@10.10.10.1 --global "WorkDir: C:\Inetpub\wwwroot\mrtg" --output router.abc.xyz.cfg
Either way, you'll end up with a .cfg file named router.abc.xyz.cfg.
2. Now you need to run MRTG against the .cfg file to start producing graphs. And, like before, there's the *NIX way and the Windows way:
# env LANG=C /usr/local/mrtg-2/bin/mrtg router.abc.xyz.cfg

Windows way:
> mrtg.pl router.abc.xyz.cfg

3. Now you need to run MRTG against your .cfg file(s) every five minutes to get the trending going, to do this you could create a cron job (*NIX), or, run a VBScript from Windows Task Scheduler.
*/5 * * * * env LANG=C /usr/local/mrtg-2/bin/mrtg /var/www/html/mrtg/router.abc.xyz.cfg
Windows way:
I recommend using Task Scheduler to a VBScript that executes MRTG against your .cfg file every five minutes. Example VBScript
4. Download and save the extension in $BBHOME/ext.
5. Edit the extension and add your device(s).
6. Make it executable (chmod 775 bbmrtg.sh).
7. Add it to $BBHOME/etc/bb-bbexttab.
8. Restart Big Brother.
When BB restarts you'll see the bbmrtg.sh extension listed in STDOUT and shortly after that you should see a new column named "mrtg" on the BBDISPLAY.
