I am new to cacti and network monitoring in general.
I have a standard cacti + spine running on a ubuntu 14.04 VM.
I am trying to generate a data source using the "SNMP - Generic OID" template.
Code: Select all
Data Source Debug
/usr/bin/rrdtool create \
/var/lib/cacti/rra/sparky_vm_snmp_oid_12.rrd \
--step 300 \
DS:snmp_oid:GAUGE:600:0:100 \
RRA:AVERAGE:0.5:1:600 \
RRA:AVERAGE:0.5:6:700 \
RRA:AVERAGE:0.5:24:775 \
RRA:AVERAGE:0.5:288:797 \
RRA:MAX:0.5:1:600 \
RRA:MAX:0.5:6:700 \
RRA:MAX:0.5:24:775 \
RRA:MAX:0.5:288:797 \
Code: Select all
sudo find / -name *.rrd
/var/lib/cacti/rra/localhost_proc_7.rrd
/var/lib/cacti/rra/localhost_mem_buffers_3.rrd
/var/lib/cacti/rra/localhost_mem_swap_4.rrd
/var/lib/cacti/rra/localhost_users_6.rrd
/var/lib/cacti/rra/localhost_load_1min_5.rrd
/var/lib/cacti/rra/sparky_vm_ping_13.rrd
I successfully created the following data source using the "UNIX - Ping Host" template.
Code: Select all
Data Source Debug
/usr/bin/rrdtool create \
/var/lib/cacti/rra/sparky_vm_ping_13.rrd \
--step 300 \
DS:ping:GAUGE:600:0:5000 \
RRA:AVERAGE:0.5:1:600 \
RRA:AVERAGE:0.5:6:700 \
RRA:AVERAGE:0.5:24:775 \
RRA:AVERAGE:0.5:288:797 \
RRA:MAX:0.5:1:600 \
RRA:MAX:0.5:6:700 \
RRA:MAX:0.5:24:775 \
RRA:MAX:0.5:288:797 \
I have tried deleting and re-creating the data source a number of times and have waited for a number of polling intervals.
Any suggestions would be appreciated.