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 - Some BPI Checks Show "Unknown BPI Group Index" After Upgrade
Viewed 3739 times since Wed, Sep 18, 2019
Nagios XI - Empty Screen for Wizard, Component, Dashlet
Viewed 5827 times since Wed, Jan 27, 2016
Nagios XI - Configuring Core Contacts to Use XI’s phpmailer SMTP Settings
Viewed 6157 times since Wed, Jan 27, 2016
Nagios XI - Hardware Requirements - Baseline Testing
Viewed 5370 times since Sun, Jul 17, 2016
Nagios XI - Status Information Cut Off At 256 Characters
Viewed 7034 times since Thu, Feb 25, 2016
Nagios XI - Database Optimization
Viewed 6489 times since Thu, Jan 28, 2016
Nagios XI - Integrating On-Call Schedules with Nagios - NWC13
Viewed 5301 times since Tue, Feb 9, 2016
Nagios XI - Installing Latest SourceGuardian Loaders
Viewed 6129 times since Mon, Jun 18, 2018
Nagios XI - Event Data Is Stale
Viewed 4747 times since Wed, Jan 27, 2016
Nagios XI - Customizing The Landing Page
Viewed 6698 times since Wed, Jan 27, 2016