Tagged Questions
3
votes
3answers
827 views
How can I find long term trends using RRD?
Newbie in rrdtool. I want to look at efforts required to establish a line of best fit on RRD charts so that we can detect long term trends - i.e. value is increasing over time. I have been recently ...
2
votes
1answer
148 views
How to make RRDtool use commas instead of dots as decimal separators in graphs
I'm using RRDtool through a Perl script (RRDs) to visualize temperature readings. As I want everything in the graph to be shown in Swedish (weekdays etc), I set the locale to sv_SE.UTF-8 in my Perl ...
2
votes
1answer
3k views
How can I update data with RRDtool?
I am using RRDtool for storing data for displaying graphs. I update the RRD by RRDs::update and this fails when trying to rewrite the information, means update data for a time in the past (e.g. ...
1
vote
1answer
99 views
How to install RRDTool::OO on Strawberry perl
I'm actually trying to install RRDTool on windows, using strawberry perl and it's nice cpan command.
The issue is that the tool will not install correctly the RRDTool package, on which the ::OO ...
0
votes
1answer
18 views
Mailgraph.cgi script error
I have installed rrdtool 1.4.7 and on testing with http://localhost/mailgraph.cgi.I get the error below:
Premature end of script headers: mailgraph.cgi, referer: http://localhost/mailgraph.cgi.
How ...
0
votes
1answer
191 views
RRDs::fetch implementation using RRDtool
I have some legacy code which uses the RRDs module (RRDs::fetch), but now the RRD file generation is changed.
A 64-bit program is generating an RRD file which can't be read by 32-bit Perl. So I am ...
0
votes
1answer
122 views
Caught in a neverending install cycle after upgrading Perl
Last night I was reading about a mysql tuning program here. I installed it and it said I needed a perl version higher than the one I had. I downloaded and installed perl 5.12.x
Suddenly my Munin ...
0
votes
1answer
183 views
How can i use one perl script to create/populate and draw a RRDTool graph
Here is an example: this script would generate data.
#!/opt/local/bin/perl
use Data::Dumper;
use strict;
my $i=0;
my $startTime=time;
$startTime += $ARGV[0] + 5;
my $dTime = localtime( $startTime ...
0
votes
1answer
778 views
How can I use Perl and RRD to plot ping times?
I'm trying to do my first rrd graph through Perl.
I have tried RRD::Simple and rrds and just can't get either one to work.
Here's what I have so far:
use strict;
use RRD::Simple ();
# Create an ...
0
votes
3answers
219 views
How can I create PDF output from rrdcgi?
I have created a rrdcgi script to display information about the system performance with graphs. Now I would like to add an option for the users to create PDF on the fly with the details on current ...
0
votes
3answers
2k views
Can I use rrdtool with Perl to make graphs from CSV files?
Below is the sample data format in my CSV file.
date,<options>
YYYY-MM-DD,<values>
Every next morning this CSV file has been updated with next date values. Can I use rrdtool to create ...
-3
votes
2answers
3k views
How can I create RRD files in Perl?
I have a separate application printing logs in every 10 seconds. I need to create RRD files from the log files. I need some Perl code to read the log files and create the RRD only without the graphs.
...