This is the debug output.
It seems that the rrdtool is unable to find the .rrd file. How would i go about solving this error?
I am currently trying to monitor the cpu usage of the pc that i am using
This is the current config
Code: Select all
RRDTool Command:
C:/rrdtool/rrdtool.exe graph - \
--imgformat=PNG \
--start=-86400 \
--end=-300 \
--title="localhost - CPU Usage" \
--rigid \
--base=1000 \
--height=120 \
--width=500 \
--alt-autoscale-max \
--lower-limit=0 \
--vertical-label="percent" \
--slope-mode \
--font TITLE:12: \
--font AXIS:8: \
--font LEGEND:10: \
--font UNIT:8: \
DEF:a="C\:/inetpub/wwwroot/cacti/rra/23/58.rrd":cpu:AVERAGE \
CDEF:cdefbc=TIME,1312487736,GT,a,a,UN,0,a,IF,IF \
AREA:a#FF0000FF:"System" \
GPRINT:a:LAST:"Current\:%8.2lf %s" \
GPRINT:a:AVERAGE:"Average\:%8.2lf %s" \
GPRINT:a:MAX:"Maximum\:%8.2lf %s\n" \
AREA:a#0000FFFF:"User":STACK \
GPRINT:a:LAST:" Current\:%8.2lf %s" \
GPRINT:a:AVERAGE:"Average\:%8.2lf %s" \
GPRINT:a:MAX:"Maximum\:%8.2lf %s\n" \
AREA:a#00FF00FF:"Nice":STACK \
GPRINT:a:LAST:" Current\:%8.2lf %s" \
GPRINT:a:AVERAGE:"Average\:%8.2lf %s" \
GPRINT:a:MAX:"Maximum\:%8.2lf %s\n" \
LINE1:cdefbc#000000FF:"Total" \
GPRINT:cdefbc:LAST:" Current\:%8.2lf %s" \
GPRINT:cdefbc:AVERAGE:"Average\:%8.2lf %s" \
GPRINT:cdefbc:MAX:"Maximum\:%8.2lf %s\n"
RRDTool Says:
ERROR: opening 'C:/inetpub/wwwroot/cacti/rra/23/58.rrd': No such file or directory
Code: Select all
08/06/2011 02:50:00 PM - POLLER: Poller[0] WARNING: There are '1' detected as overrunning a polling process, please investigate
08/06/2011 02:50:00 PM - POLLER: Poller[0] WARNING: Scheduled Task is out of sync with the Poller Interval! The Poller Interval is '300' seconds, with a maximum of a '300' second Scheduled Task, but 600 seconds have passed since the last poll!
08/06/2011 02:40:00 PM - POLLER: Poller[0] WARNING: There are '1' detected as overrunning a polling process, please investigate
08/06/2011 02:39:59 PM - SYSTEM DSSTATS STATS: Type:HOURLY, Time:0.0050
08/06/2011 02:39:59 PM - SYSTEM STATS: Time:298.5215 Method:cmd.php Processes:4 Threads:N/A Hosts:4 HostsPerProcess:1 DataSources:2 RRDsProcessed:0
08/06/2011 02:39:59 PM - POLLER: Poller[0] Maximum runtime of 298 seconds exceeded. Exiting.
08/06/2011 02:35:00 PM - POLLER: Poller[0] WARNING: There are '1' detected as overrunning a polling process, please investigate
Webserver: IIS 7
Cacti: 0.8.7g
Spine:0.8.7g
MySQL:5.1.50
PHP:5.2.14
RRDTool (Cygwin or Win32 version):1.2.30
Net-SNMP:5.5.0.2
Cygwin (cygwin1.dll version):1.7.5
EDIT: The graphs are being displayed but there is no data being updated. After i export the graph as a .csv file , under the columns Free and Swap , the data is NaN.
Thanks