Home » Categories » Multiple Categories

Nagios XI - Migrate Performance Data

Overview

Historical performance data that is used to generate graphs are stored in Round Robin Database (RRD) files. RRD performance data files are compiled binaries, so for a simple file transfer a user would have to have the architecture match on both machines.

If you want to migrate files from a 32bit to 64bit machine, you'll have to convert the data to XML and import it into RRD's on the new machine. The following steps will allow you to migrate the data:

On the old 32bit server:

cd /usr/local/nagios/share/perfdata/
for i in `find -name "*.rrd"`; do rrdtool dump $i > $i.xml; done
tar -cvzf perfdata.tar.gz */*.rrd.xml
for i in `find -name "*.rrd.xml"`; do rm -f $i; done
cd /var/lib/mrtg/
for i in `find -name "*.rrd"`; do rrdtool dump $i > $i.xml; done
tar -cvzf mrtgdata.tar.gz *.rrd.xml
for i in `find -name "*.rrd.xml"`; do rm -f $i; done

 

This will create the files:

  • /usr/local/nagios/share/perfdata/perfdata.tar.gz
    • This needs to be transferred to the /usr/local/nagios/share/perfdata/ directory on the new server
  • /var/lib/mrtg/mrtgdata.tar.gz
    • This needs to be transferred to the /var/lib/mrtg/ directory on the new server

 

On the new 64bit server:

cd /usr/local/nagios/share/perfdata/
for i in `find -name "*.rrd"`; do rm -f $i; done
tar -xvzf perfdata.tar.gz
for i in `find -name "*.rrd.xml"`; do rrdtool restore $i `echo $i |sed s/.xml//g`; done
for i in `find -name "*.rrd"`; do chown nagios:nagios $i; done
for i in `find -name "*.rrd.xml"`; do rm -f $i; done

cd /var/lib/mrtg/
for i in `find -name "*.rrd"`; do rm -f $i; done
tar -xvzf mrtgdata.tar.gz
for i in `find -name "*.rrd.xml"`; do rrdtool restore $i `echo $i |sed s/.xml//g`; done
for i in `find -name "*.rrd"`; do chown nagios:nagios $i; done
for i in `find -name "*.rrd.xml"`; do rm -f $i; done

 

When this completes the historic performance data will be migrated from the old server.

 

Final Thoughts

For any support related questions please visit the Nagios Support Forums at:

http://support.nagios.com/forum/

3 (1)
Article Rating (1 Votes)
Rate this article
  • Icon PDFExport to PDF
  • Icon MS-WordExport to MS Word
Attachments Attachments
There are no attachments for this article.
Related Articles RSS Feed
Nagios XI - How To Test Check Commands From The Command-line
Viewed 41539 times since Tue, Jan 26, 2016
Nagios XI - NSP: Sorry Dave, I can’t let you do that
Viewed 21444 times since Tue, Jan 27, 2015
Installation errors on customized corporate builds of CentOS or RHEL
Viewed 9815 times since Tue, Jan 26, 2016
Nagios XI - Receiving SNMP Traps From Nagios Network Analyzer
Viewed 5916 times since Mon, Oct 17, 2016
Nagios XI Wizards Achitecture
Viewed 3662 times since Thu, Jan 29, 2015
Nagios XI - Apply Configuration Fails - Backend login to the Core Configuration failed
Viewed 17183 times since Tue, Aug 2, 2016
Nagios XI - Performance Graph Problems
Viewed 23675 times since Fri, Dec 19, 2014
Nagios XI - CentOS 6 Installation Problems XI 2011R1.7 2011R1.8
Viewed 4197 times since Tue, Feb 2, 2016
NDOUtils - Message Queue Exceeded
Viewed 14318 times since Thu, Jan 21, 2016
VMWare checks timing out or slow
Viewed 2675 times since Fri, Feb 11, 2022