Questions tagged [rrdtool]

RRDtool (acronym for round-robin database tool) aims to handle time-series data like network bandwidth, temperatures, CPU load etc.

RRDtool (acronym for round-robin database tool) aims to handle time-series data like network bandwidth, temperatures, CPU load etc. This time series data is then automatically compressed based on the RRA (acronym for round-robin archive) defined at the time of creation. This allows the data to be retrieved at a high rate, but the storage footprint remains the same over time. The downside to this is granularity is lost over time. See the RRDtool documentation for more details.

http://oss.oetiker.ch/rrdtool/doc/index.en.html

http://en.wikipedia.org/wiki/RRDtool

417 questions
0
votes
2 answers

RRD wrong values

I'm playing with RRDTool, but it shows wrong values. I have little python script: import sys import rrdtool import time i = 0 rrdtool.create( 'tempo.rrd', '--step', '10', 'DS:temp:GAUGE:20:-40:100', 'RRA:LAST:0.5:1:1500' ) while…
Taadas
  • 7
  • 4
0
votes
1 answer

rrdtool gives bus error when an attempt is made to create an rrd database

I'm having problems getting rrdtool (version 1.4.8) create a database on my system (x86_64 CentOS 4.1, kernel 2.6.18.128, and ext3 filesystem type). I tried running a simple command to create a database as shown this tutorial, but I get a SIGBUS…
SidR
  • 2,964
  • 1
  • 18
  • 32
0
votes
1 answer

RRD graphs in Zenoss showing NaN on large time ranges

I am trying to create COMMAND JSON datasource to monitor some values, for example from such script: print json.dumps({ 'values': { '': {'random': random()}, }, 'events': [] }) And when i just starting zencommand, appropriate rrd…
Bunyk
  • 7,635
  • 8
  • 47
  • 79
0
votes
3 answers

Can I use rrdtool with Perl to make graphs from CSV files?

Below is the sample data format in my CSV file. date, YYYY-MM-DD, Every next morning this CSV file has been updated with next date values. Can I use rrdtool to create graphs, and if so how?
Space
  • 7,049
  • 6
  • 49
  • 68
0
votes
1 answer

PHP and rrd : rrd_xport function returning error

I'm trying to use the rrd_xport function to read data from an RRD file. The function rrd_xport takes an array with 'options' as argument, but for the life of me I can't get it to work. It doesn't help that the function is undocumented. All I get out…
Dennis
  • 779
  • 4
  • 14
0
votes
1 answer

RRDtool Percentage calculation

I want to calculate the percentage of usage of some features of my host, by RRD queries.(I have Cacti installed and Cacti stores the monitoring data in RRD). For example if there is 1 GB total swap memory and now I have used 250 MB, the return…
masoumeh
  • 468
  • 1
  • 5
  • 15
0
votes
1 answer

MRTG ThreshPro is only one time. Not runs every 5 minute

I have setup MRTG-rrdtools-routers2.cgi and setup working fine and happy as a beginner :) I have set 'ThreshDir:', 'ThreshMinI' and 'ThreshProgI' in MRTG cfgs. At the first run my script in 'ThreshProgI' is run without any issue but it not going to…
Yasiru G
  • 6,886
  • 6
  • 23
  • 43
0
votes
1 answer

How to seed RRDtool from file with timestamps?

I have a file with timestamps for hits on a system. How can I feed this into the RRDtool database (or other similar solution), so that I can plot a time graph?
sunkencity
  • 3,482
  • 1
  • 22
  • 19
0
votes
1 answer

rrdtool: Use Consulidation-Function MIN, exclude NaN Values

i have an archive which contains the minimum duration times of messages going through an enterprise service bus. During night-time or on weekends it is possible, that there are no messages, so the minimum duration time is NULL. Because of this, i…
0
votes
1 answer

RRDTOOL configure script not picking up glib-2.0

I'm trying to build rrdtool-1.4.8 on a machine with CentOS 4.1, and when I run the configure script, despite adding -I/usr/include/glib-2.0 and -I/usr/lib64/glib-2.0/include to CPPFLAGS: # ./configure --disable-tcl --disable-python…
SidR
  • 2,964
  • 1
  • 18
  • 32
0
votes
1 answer

Failing to compile rrd

I'm having problems compiling the rrdtool with Visual Studio 2008. I have all the zip files added and extracted. I opened rrd.sln and tried a build solution for each of the 3 projects; rrdlib, rrdtool and rrdupdate but I'm getting failures on all…
0
votes
1 answer

MRTG ThreshProgI/O stopped working after start using rrdtool

I was using MRTG system and it was log usage data to .log files. I was use 'ThreshProgI' to get threshold alerts and it was working fine. I changed the usage logging format to rrdtool and now my system is logging all usage to .rrd files without any…
Yasiru G
  • 6,886
  • 6
  • 23
  • 43
0
votes
2 answers

RRD Tool Graph Highlight NAN value

Is there a way that I can have rrdGraph create a graph that highlights any missing data, rather than just leaving that space blank?
Butters
  • 887
  • 1
  • 8
  • 28
0
votes
0 answers

What means and how show chart information in Ganglia/RRD Tool?

I'm using Ganglia, which use RRDTool as database, to get chart about my servers, but after installing, setting the things up, I notice that there's a bit of confusion in the way that the data are represented, at least in the Ganglia Web…
Valter Silva
  • 16,446
  • 52
  • 137
  • 218
0
votes
1 answer

What does the ganglia directory __SummaryInfo__ contain?

Ganglia writes cluster matrices in rrd file and keeps under the location "/var/lib/ganglia/rrds/ClusterName/" (in default configuration). In the above location there are directories for different hosts in the cluster and "__SummaryInfo__" directory …
SachinJose
  • 8,462
  • 4
  • 42
  • 63