fresh installation of cacti on Debian (not from deb package).
It seems to run great "out of the box". The RRDs are created every 5min.
But the graphs are not shown. Only the little blue question mark.
I activated "Graph Debug Mode" and it show's this command:
Code: Select all
/usr/bin/rrdtool graph - \
--imgformat=PNG \
--start=-86400 \
--end=-300 \
--title='Localhost - Load Average' \
--rigid \
--base=1000 \
--height=120 \
--width=500 \
--alt-autoscale-max \
--lower-limit=0 \
--units-exponent='0' \
--vertical-label='processes in the run queue' \
--slope-mode \
--font TITLE:10: \
--font AXIS:7: \
--font LEGEND:8: \
--font UNIT:7: \
DEF:a="/var/www/cacti/htdocs/rra/localhost_load_1min_5.rrd":"load_1min":AVERAGE \
DEF:b="/var/www/cacti/htdocs/rra/localhost_load_1min_5.rrd":"load_5min":AVERAGE \
DEF:c="/var/www/cacti/htdocs/rra/localhost_load_1min_5.rrd":"load_15min":AVERAGE \
CDEF:cdefg='TIME,1335536145,GT,a,a,UN,0,a,IF,IF,TIME,1335536145,GT,b,b,UN,0,b,IF,IF,TIME,1335536145,GT,c,c,UN,0,c,IF,IF,+,+' \
AREA:a#EACC00FF:"1 Minute Average" \
GPRINT:a:LAST:" Current\:%8.2lf\n" \
AREA:b#EA8F00FF:"5 Minute Average":STACK \
GPRINT:b:LAST:" Current\:%8.2lf\n" \
AREA:c#FF0000FF:"15 Minute Average":STACK \
GPRINT:c:LAST:"Current\:%8.2lf\n" \
LINE1:cdefg#000000FF:""
there is absolutely nothing.
I executed the above command on command line and there is a propper png created.
Any Idea how to fix this?
Thanks allot
Pascal