Tagged Questions

3
votes
3answers
803 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
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
509 views

Sum two graphs, when the second RRD file is started only now

I don't know how to explain my problem.... but I have two RRD files: a.rrd b.rrd I'm trying to sum both of the files and STACK them up in the graph. like: my $bla = RRDs::graph "-", ...
0
votes
0answers
32 views

How to compile RRDTool on Windows/ Strawberry

This question follows How to install RRDTool::OO on Strawberry perl I thought it would be better to create a new question, for the sake of clarity. Resume: One wants to install the RRDTool::OO perl ...
0
votes
1answer
176 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
749 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 ...
-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. ...