I am facing problem after upgrading my cacti from 0.8.8g to 0.8.8f
If I create new devices, the graph just graphing for 2 days.
Here I attached 3 screenshots from viewing last day and last week graphs. Cacti versions : 0.8.8f
RRDTool : 1.3.8-7.e16
OS : CentOS 6.7 (Final)
Here is the data template : And this is the graph template that I use : This RRA is still default from the Cacti : Graph debug output :
Code: Select all
RRDTool Command:
/usr/bin/rrdtool graph - \
--imgformat=PNG \
--start='-86400' \
--end='-300' \
--title='Asep / xxxxxxxx - Traffic - eth0/2' \
--rigid \
--base='1000' \
--height='120' \
--width='500' \
--alt-autoscale-max \
--lower-limit='0' \
--vertical-label='bits per second' \
--slope-mode \
--font TITLE:10: \
--font AXIS:7: \
--font LEGEND:8: \
--font UNIT:7: \
DEF:a='/var/www/html/cacti-0.8.8f/rra/xxxxxxxx_traffic_in_2852.rrd':'traffic_in':AVERAGE \
DEF:b='/var/www/html/cacti-0.8.8f/rra/xxxxxxxx_traffic_in_2852.rrd':'traffic_out':AVERAGE \
CDEF:cdefa='a,8,*' \
CDEF:cdefe='b,8,*' \
AREA:cdefa#00CF00FF:'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#002A97FF:'Outbound' \
GPRINT:cdefe:LAST:'Current\:%8.2lf %s' \
GPRINT:cdefe:AVERAGE:'Average\:%8.2lf %s' \
GPRINT:cdefe:MAX:'Maximum\:%8.2lf %s'
RRDTool Says:
OK
Code: Select all
Data Source Debug
/usr/bin/rrdtool create \
/var/www/html/cacti-0.8.8f/rra/xxxxxxxx_traffic_in_2852.rrd \
--step 300 \
DS:traffic_in:COUNTER:600:0:100000000 \
DS:traffic_out:COUNTER:600:0:100000000 \
RRA:AVERAGE:0.5:1:600 \
RRA:MAX:0.5:1:600 \
Thanks