Hello, I'm currently working with several hundred RRD files and a large
chunk have the incorrect step and heartbeat .they were setup with a step of 300 and
heartbeat of 900 where i would like to change them to 600 and 1800.
I've read that in order to accomplish this you need to dump the
database into XML with the rrdtool dump command and then alter the XML
files (adding/removing data points, and updating the settings) and then
restore the database from the modified XML, please correct me if i'm
wrong about that. <br>
<br>Anyway I&#39;ve created a Perl script to dump to XML, read in the XML
and change the values of heartbeat and step and then remove every other
data collection point to be inline with the step of 600 sec. I then
rebuild the XML and save that to a file. The new XML file does not have
any comments but contains everything else. When i try and restore the
database from this XML file i get the error<br>
<br><i>&nbsp;&nbsp; &#39;ERROR: Incompatible file version, detected version . This is not supported by the version 0003 restore tool.</i>&#39;<br><br>returned.
I&#39;ve looked through the modified XML file and i don&#39;t see anything
different, other then the order the tags are listed in the file. could
this cause a problem? or could the lack of comments cause a problem?
I&#39;m also using the same version of rrdtool to dump as i am to restore
the database, RRDtool 1.2.23. <br>
<br>Original XML:<br><a href="https://www.ondashboard.com/origional.xml">https://www.ondashboard.com/origional.xml</a><br><br>Modified XML:<br><a href="https://www.ondashboard.com/modified.xml">https://www.ondashboard.com/modified.xml</a><br>
<br>Part of the Perl Script:<br><br><div style="margin-left: 40px;">&nbsp;&nbsp;&nbsp; # read XML file<br>&nbsp;&nbsp;&nbsp; my $data = $xml-&gt;XMLin(&quot;dump.xml&quot;);<br><br>&nbsp;&nbsp;&nbsp; $data-&gt;{step} = 600;<br>&nbsp;&nbsp;&nbsp; <br>&nbsp;&nbsp;&nbsp; my @xml;<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; <br>&nbsp;&nbsp;&nbsp; for my $rra ( @{ $data-&gt;{rra} } ) {&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; <br>
&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; my $lcv=0;<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; my @new;<br><br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; # Loop through database and remove every other entry.<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; for my $value ( @{ $rra-&gt;{database}-&gt;{row} } ) {&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; <br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; if($lcv % 2 == 0 || $lcv == 0) {<br>
&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; push(@new, \%$value); &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; <br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; }<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; $lcv++;<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; }&nbsp;&nbsp;&nbsp; <br><br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; # Append XML with new Database<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; $rra-&gt;{database}-&gt;{row} = \@new;&nbsp;&nbsp;&nbsp; <br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; push(@xml, $rra);<br>
&nbsp;&nbsp;&nbsp; }<br>&nbsp;&nbsp;&nbsp; <br>&nbsp;&nbsp;&nbsp; $data-&gt;{rra} = \@xml;<br><br>&nbsp;&nbsp;&nbsp; # Export the perl structure into XML<br>&nbsp;&nbsp;&nbsp; XMLout($data, &nbsp;&nbsp;&nbsp; OutputFile =&gt; $file.&quot;.xml&quot;,<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; RootName =&gt; &#39;rrd&#39;,<br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; NoAttr =&gt; 1);<br>
</div><br><br><br><br>Thanks.<br>