Freenas 8.0.4 P1 - x64

Status
Not open for further replies.

andrew0401

Dabbler
Joined
Aug 19, 2011
Messages
21
Problem with RRD graphs failing to generate - email filling up every 5 mins

Traceback (most recent call last):
File "/usr/local/bin/graph.py", line 468, in <module>
GenerateCpuGraph()
File "/usr/local/bin/graph.py", line 189, in GenerateCpuGraph
'GPRINT:avg4:LAST:%5.2lf Last\l',
rrdtool.error: This RRD was created on another architecture


No RRD graphs have been requested and the reporting options screen is blank.

Andrew
 

ProtoSD

MVP
Joined
Jul 1, 2011
Messages
3,348
Try going to the command line and doing this:

mount -uw /
cd /data

ls *.rrd

If it lists a bunch of "rrd" files, delete them with "rm *.rrd" (no quotes)

exit and reboot, it should fix the problem.
 

ProtoSD

MVP
Joined
Jul 1, 2011
Messages
3,348
look in /data for anything with rrd and delete it

It takes awhile for the reporting data to refresh ~5 minutes?

Anyway, this is a known issue, it's been reported a few times already.
 

andrew0401

Dabbler
Joined
Aug 19, 2011
Messages
21
Only entry was rrd_dir.tar.bz2 - deleted it, rebooted and it had returned - still generating the error every 5 mins
 

andrew0401

Dabbler
Joined
Aug 19, 2011
Messages
21
Found these commands elsewhere - they solved it!

service collectd stop
find /var/db -name "*.rrd" -exec rm -rf {} \;
service collectd start
cd /root
./save_rrds.sh

(& reboot)
 
Status
Not open for further replies.
Top