Migration of RRD Graphs

Author: stephan  |  Category: Linux, Nagios, Netzwerk

[lang_de]
Ich hatte vor kurzem das Problem das RRD Graphen nicht mehr korrekt geupdatet wurden nach einer Migration.
Im Netz fand ich dann diesen => Guide

Auf der Quelle
for i in `ls *. rrd`; do rrdtool dump $i > $i.xml; done
Dann die Dateien auf das Ziel kopieren und folgendes eingeben
for i in `ls *.xml`; do rrdtool restore $i `echo $i |sed s/.xml//g`; done
[/lang_de]
[lang_en]
After a migration I had the problem that the Update of RRD Graphs failed.
The I found this guide in the internet => Guide

Source
for i in `ls *. rrd`; do rrdtool dump $i > $i.xml; done
Then copy the file to the target and do the following.
for i in `ls *.xml`; do rrdtool restore $i `echo $i |sed s/.xml//g`; done
[/lang_en]

Tags: , , , ,