rrd's not showing up in graphite?
On the graphite system, check if the rrd's were written on 64-bit or 32-bit system.
rrdtool info filename.rrd
If the graphite system is a different arch, convert them to xml with:
for i in `ls *.rrd`; do rrdtool dump $i > $i.xml; done
Convert back after moving the files:
for i in `find . -name '*.xml'`; do rrdtool restore $i `echo $i |sed s/.xml//g`; don
This article was helpful.
http://slog.carlheaton.co.uk/index.php/2009/10/converting-32bit-rrd-to-64bit-rrd-moving-cacti-between-architectures/
No comments:
Post a Comment