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
0 answers

The rrdcached is failed to stop

I am using rrdtool-1.4.7-1 version of rrd tool. In normal case, If all RRD data has been flushed then "clean shutdown; all RRDs flushed message" displays in syslog logs. Below message will show when shutdown is performed. Mar 21 10:36:28…
yogesh
  • 25
  • 5
0
votes
1 answer

Cronjob for rrdtool fetch

I have created bash file and it can run properly with console but not with crontab. In /home/zon/rrd-aggregate/agg.log it returns nan. But if it runs with console it shows the value from rrd correctly. # aggregate.sh cat aggregate-rrd.sh rm -rf…
Siri
  • 1
  • 2
0
votes
1 answer

Problem with RDD bash script variable

I have the folowing bash script i'm trying to implement, but it fails awfully, can anyone help me with some advice... #!/bin/bash FILE='/var/www/router.rrd' OUTPUT='/var/www/router.png' RRDTOOL='rrdtool graph' $RRDTOOL $OUTPUT \ -t…
Mike
  • 965
  • 4
  • 15
  • 24
0
votes
1 answer

RRDtool graph: empty graph

And all I get with the below call of rrdtool is an empty graph, but why? No data in database? rrdtool create connecteclients.rrd --step…
Adrian
  • 2,576
  • 9
  • 49
  • 97
0
votes
1 answer

Unclear errorreport from RRDTool graphing script

When one version of a set of scripts runs, which apply RRDTool, you try more of the same ..... Made a version of the lua-script, which now collects power/energy-info, and the related file create_pipower1A_graph.sh is a direct derivative of the…
Toulon7559
  • 31
  • 10
0
votes
1 answer

call rrd_create from c file

I'm trying call rrd func from my project in CLion (on ubuntu), rrd.h is in /usr/include/. My code: #include #include int main() { size_t argc = 6; char *argv[] = { "test.rrd", "--start", …
Daniel Mur
  • 15
  • 4
0
votes
2 answers

rrdtool fetch returns None object

I'm using rrdtool library in python. Same python script returned data a day back, but now suddenly it's returning None object inside the tuples generated. The rrd files haven't been modified. Type of returned is tuple and even the rrdinfo if getting…
J. Alan
  • 35
  • 8
0
votes
1 answer

rrdtool fetch returns all -nan

Create db: rrdtool create test.rrd --step 60 --start N DS:mem:GAUGE:60:U:U RRA:LAST:0.5:12:24 RRA:MAX:0.5:12:24 RRA:MIN:0.5:12:24 RRA:AVERAGE:0.5:12:24 Then I create get_mem.sh: #!/bin/bash export…
Daniel Mur
  • 15
  • 4
0
votes
1 answer

Updating rrdtool database

My first post here so I hope I have not been too verbose. I found I was losing datapoints due to only having 10 rows in my rrdtool config and wanted to update from a backup source file with older data. After fixing the rows count the config was…
Rob B
  • 31
  • 5
0
votes
1 answer

Ganglia installations fails in centos7 (rrd_create in -lrrd... no)

When i try to install ganglia in centos7, I am getting following error Configuring libmetrics ... checking for pthread_create in -lpthread... yes checking for pthread_create in -lpthreads... no checking rrd.h usability... yes checking rrd.h…
mohan
  • 1,340
  • 3
  • 15
  • 27
0
votes
1 answer

The best approach to log total values with RRDtool?

I am developing a graph system for energy consumption. The script is pulling the current Kwh of an energymeter and is then pushed to a rrd database with DS COUNTER. I have tried to use VDEF to count the total of an DEF with average but I cant seem…
EveGun
  • 9
  • 2
0
votes
1 answer

Passing data from remote sensor to server

Im currently working on a project that involves a number of small linux based hosts which read data from a sensor and send the data through an Open VPN link to a server. The server is an Ubuntu VM which will be able to scale to cope with demand as…
Paula Livingstone
  • 1,175
  • 1
  • 12
  • 21
0
votes
1 answer

How to install RRD PHP extension on OS X

I need the support of RRDTool http://php.net/manual/en/ref.rrd.php in my php installation. I'm used to install php extensions using Homebrew. However, this time for RRD there isn't any available. How can I install this extension so I can use…
simPod
  • 11,498
  • 17
  • 86
  • 139
0
votes
1 answer

How to add formula in parameters of RRD graph parameters?

E.g. I have following code, our $timeseries = { _type => 'array', _pdpstep => 300, # Time resolution _heartbeat => 700, # Time of loss before going to Unknown _storage => 'day', _ylabel => "dBm", _mandatory =>…
0
votes
1 answer

One-off and no-data-problem

I'm just getting started using RRDtool to collect climate data. I don't use the graph functionality, but rather use "fetch" to retrieve data. I then use another graphing solution (flot) to display the data, and that seems to work somewhat. But I had…
Jonatan
  • 3,752
  • 4
  • 36
  • 47