RRDtool (acronym for round-robin database tool) aims to handle time-series data like network bandwidth, temperatures, CPU load etc.
9
votes
3answers
4k views
Java RRD library
I came across two options when googling my way over the internet:
JRobin
RRD4J
JRobin seems to be really outdated. The latest release of JRobin is 1.5.9 (released on 05/09/2008), since RRD4J is a ...
4
votes
3answers
6k 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
530 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 ...
1
vote
1answer
1k views
CDEF Function to find % value in Cacti
I am trying to figure out how to find the % based on two data sources from an RRD graph. Below is the code used to create the graph (generated by Cacti)
/usr/bin/rrdtool graph - \
--imgformat=PNG \
...
0
votes
1answer
334 views
Trouble updating an RRDtool database
I created a database with the following syntax.
rrdtool create mydatabase.rrd -s 60 \
DS:users:COUNTER:600:0:U \
DS:activeusers:GAUGE:600:0:U \
RRA:AVERAGE:0.5:360:576 \
RRA:AVERAGE:0.5:8640:672 \
...