Questions tagged [rrd]

Round Robin Database is a database that typically holds cyclical data points and remains a constant size over time.

A Round Robin Database is primarily used for monitoring purposes and usually contains time-series data such as network bandwidth, temperatures, and CPU load. The data is stored in the way that system storage footprint remains constant over time as newer data overwrites similar older data. This avoids resource expensive purge jobs and reduces complexity.

201 questions
0
votes
0 answers

How to read Cacti RRD Files and save it to CSV file using python

I currently use cacti as the monitory platform. I need to read the collected data saved in rrd files and put it in a CSV to transform it to JSON format (It will be put in a map) using Python. How could I get the data from the rrd using python? Thank…
0
votes
1 answer

Updating values in an existing RRD file

I have an rrd file working fine under cacti, drawing a graph for me for more than a year from one data source. Today, I discovered that the data in the rrd file is not correct. I have corrected the data source and fixed problem for the future.…
takobaba
  • 306
  • 1
  • 4
  • 15
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

Import RRD data into Python Data Structures

Does anyone have a good method for importing rrd data into python? The only libraries I have found so far are just wrappers for the command line or provide importing data into rrd and graphing it. I am aware of the export and dump options of rrd,…
Kyle Brandt
  • 26,938
  • 37
  • 124
  • 165
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

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

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
0
votes
1 answer

storing huge amounts of data in mongo

I am working on a front end system for a radius server. The radius server will pass updates to the system every 180 seconds. Which means if I have about 15,000 clients that would be around 7,200,000 entries per day...Which is a lot. I am trying to…
Ryan de Kock
  • 235
  • 2
  • 5
  • 12
0
votes
1 answer

How can I get rrdtool fetch to print out values using a 1 hr resolution

I'm trying to get rrdtool fetch to print out values with a resolution setting of 1 hr. I've set -r to 3600 (3600 seconds for one hour), and have set the start and end times to multiples of 3600, yet rrdtool just continues to print out values in…
lacrosse1991
  • 2,972
  • 7
  • 38
  • 47
0
votes
1 answer

RRDTool give me a blank graph

I have been trying to get this to work via trial and error and research rrdtool create attempt_db.rrd --start 1435125034 --step=10 DS:attempts:GAUGE:600:0:1000 RRA:AVERAGE:0.5:1:24 rrdtool update attempt_db.rrd
cybernard
  • 180
  • 10
0
votes
1 answer

rrd tool constellation plot and x axis plot

1) Is it possible to draw constellation plot in rrd tool ? i.e. plotting the values as dot instead of line connecting all data points. 2) Is it possible to store and plot normal integer in x axis of rrdtool graph instead of time? Thanks in advance.
Anand
  • 343
  • 1
  • 5
  • 18
0
votes
3 answers

What is the simplest way to graph rrd files in Grafana?

I have several Python scripts that output metrics to rrd formatted files. Although I have been using rrdtool for graphing, I am wondering if there is any simple way that I can directly graph rrd files in Grafana. I have found a few possibilities but…
blp
  • 578
  • 1
  • 5
  • 9
0
votes
1 answer

RRD Time since last non-change of counter

I have a RRD DCOUNTER, which gets its data from the water meter: so many units since start of the program which looks at the meter. So the input might be 2,3,4,5,5,5,5,8,12,13,13,14,14,14,14,14 That means the flow is…
Leif Neland
  • 1,416
  • 1
  • 17
  • 40