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

can I store rrd files generated by ganglia in diffetent machine

Hi I want to change the value of 'rrd_rootdir' as followw /etc/ganglia/gmetad.conf rrd_rootdir = 'storage machine ip/some/path/' default rrd_rootdir = '/var/lib/ganglia/rrds'
Ravindhar Konka
  • 153
  • 2
  • 13
1
vote
2 answers

Write data to an RRD at irregular intervals

I'm trying to find out if I can store values captured at irregular intervals into an RRD. I have a script which connects to an ActiveMQ server subscribes to a queue or topic and looks at the message header time stamp, compares it with Time.now to…
user3788685
  • 2,943
  • 5
  • 26
  • 45
1
vote
1 answer

rrdtool's fetch doesnt show single point

I used rrdtool python extension for save data in rrd: ## Creating db. rrdtool.create(rrd_file, '--step', '2', 'DS:%s:GAUGE:4:U:U' % DSNAME, 'RRA:AVERAGE:0,5:1:288', ) value =…
MyHardWay
  • 37
  • 5
1
vote
1 answer

What's the command line for rrdtool to create a graph using the last update time as the end time?

Going off of this question: Print time of recording for LAST value It appears possible to have rrdtool compute the timestamp of the last update in a rrd. How do you use this in a command as the "end" time? i.e. I want to do something like…
jpreed00
  • 893
  • 8
  • 25
1
vote
1 answer

Installing RRDtool in windows 8 (64bit)

I am new to Round robin database and I read the articles for getting an idea about RRDtool. Please anyone suggest some articles or give instructions to install RRDtool in windows 8 (64bit). Any help will be appreciated!
S M
  • 3,133
  • 5
  • 30
  • 59
1
vote
1 answer

RRD Time series data

I work for a company which receives data from smart meters. This data can be as much as 2 days old for a live stream and may get post populated in the case errors are made (gaps etc.). Currently we store this typically for 5 years. The data is then…
Mark
  • 1,544
  • 1
  • 14
  • 26
1
vote
0 answers

RRDTool archives storing only NaN

I have a RRDB on raspberry Pi. The rrdb was created using //RRA1: Archive point is saved every 5min, archive is kept for 1hour back. //RRA2-4: Archive point is saved every 1hour, archive is kept for 30day back. //RRA5: Archive point is saved every…
Adarsha
  • 2,267
  • 22
  • 29
1
vote
1 answer

How to view RRD graph data

What I am trying to do is get alerts when my bandwidth goes above a limit. I am using Cacti to graph my bandwidth usage, but I currently get no alerts if my usage goes up. So I think the best way to do this would be to write a script to check the…
user4990003
1
vote
0 answers

rrdFlotAsync and realtime

I'm trying to call rrdFlotAsnc in a timeout for realtime updates, I always get an Exception: 0x80004005 ...FetchBinaryURLAsync::....data:no without calling from a timer, all works fine, so I'm a little confused. I used the debugger and I'm more…
jr1
  • 9
  • 2
1
vote
1 answer

How can I add RRA's to an existing RRD?

I am using RRD for monitoring. In the current RRD files are not all archives present that I want to use in the future. How do I add RRA's to an existing RRD? I'm writing a Python (1.4.7) script using rrdpython. I only find the option for dumping it…
Iris1100
  • 41
  • 3
1
vote
1 answer

RRD DB fake value generator

I want to generate fake values in RRD DB for a period of 1 month and with 5 seconds as a frequency for data collection. Is there any tool which would fill RRD DB with fake data for given time duration. I Googled a lot but did not find any such…
openstk
  • 137
  • 9
1
vote
1 answer

How to make rrdtool start over from some arbitrary point in time?

Say, I was writing values to a database, then stopped doing so, and now I want to continue starting from current point in time. As far as I can see, if I fail to write something within heartbeat seconds, it stops writing to the…
x-yuri
  • 16,722
  • 15
  • 114
  • 161
1
vote
2 answers

PHP how to json_encode() return from rrd_xport()?

I've recently run into an issue doing json_encode(rrd_xport($options)); on RRD files generated by Nagios/Nagiosgraph. json_encode() appears to fall over (thus returning FALSE) when rrd_xport() returns NaN as element values. For example (given $var =…
1
vote
1 answer

graphite not displaying rrd files in the ui

After Graphite Installation the follwoing folder structure is being created in the /opt/graphite directory Under the rrd folder location, i have copied all the rrd files bash # ls -l /opt/graphite/storage/rrd/BulkData/device01-test/ and the…
anish
  • 6,884
  • 13
  • 74
  • 140
1
vote
1 answer

Getting average value for a period with RRDTool

I am using RRDTool to fetch data from RRD DB's, but have problem to get average/max number for a period (e.g. 12 hours). I want only one number representins the average/max of the period as GPRINT does in the graph function.
rs.
  • 81
  • 1
  • 8