Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I created an RRD file using RRA:AVERAGE:0.5:30:1350370680 for 7 month.it takes data at every 10 second having following Data Source. using perl script i added aniother RRA in existing file

   #!/usr/bin/perl
   use strict;
   use RRD::Editor();
   my $rrd = RRD::Editor->new();
   $rrd->open("172_16_32_2_Ethe1_0_1.rrd");
   print $rrd->info();
   $rrd->add_RRA("RRA:AVERAGE:0.5:360:5040");
   $rrd->save("172_16_32_2_Ethe1_0_1.rrd");

Now i want to fetch data according to new RRA. can Anyone help me Thanx in advance

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.