On Tue, 2006-08-01 at 23:12 +0200, Henrik Stoerner wrote:
- maybe some more router/network monitoring stuff and
Hobbit comes with built-in network service monitoring. There is also an SNMP add-on which can be used for monitoring devices such as routers.
Is there possibility to graph in/out Bits (64bits counters) from Cisco. Basically, we use CACTI for graphing gigabit ports on the routers, but integrating within Hobbit would be nice.
Cacti is pulling via snmp v2 from Cisco some MIBs and then it graphs with:
/usr/bin/rrdtool graph -
--imgformat=PNG
--start=-86400
--end=-300
--title="Bandwidth Gi0/24"
--rigid
--base=1000
--height=120
--width=500
--alt-autoscale-max
--lower-limit=0
--vertical-label="bits per second"
--slope-mode
DEF:a="/var/www/html/cacti/rra/bandwidth.rrd":traffic_in:AVERAGE
DEF:b="/var/www/html/cacti/rra/bandwidth.rrd":traffic_out:AVERAGE
CDEF:cdefa=a,8,*
CDEF:cdefe=b,8,*
AREA:cdefa#00CF00:"Inbound"
GPRINT:cdefa:LAST:" Current\:%8.2lf %s"
GPRINT:cdefa:AVERAGE:"Average\:%8.2lf %s"
GPRINT:cdefa:MAX:"Maximum\:%8.2lf %s\n"
LINE1:cdefe#002A97:"Outbound"
GPRINT:cdefe:LAST:"Current\:%8.2lf %s"
GPRINT:cdefe:AVERAGE:"Average\:%8.2lf %s"
GPRINT:cdefe:MAX:"Maximum\:%8.2lf %s"
While here, we noticed that hobbit can't graph anything above 100mbit/s for local check, how to overcome this issue? Probably issue with 32bit / 5 min pull.
Best regards