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

pyrrd.exceptions.ExternalCommandError: /bin/sh: 1: rrdtool: not found

from pyrrd.rrd import DataSource, RRA, RRD filename = 'test.rrd' dataSources = [] roundRobinArchives = [] dataSource = DataSource(dsName='speed', dsType='COUNTER',…
Anand
  • 343
  • 1
  • 5
  • 18
0
votes
2 answers

Error when trying the remove NaN

I'm using the Rrd package for R and I'm importing an rrd file, and I wish to delete all record that have NaN as a result. head(rra) timestamp curr_proc_units entitled_cycles capped_cycles 1480982460 2016-12-05 18:01:00 …
0
votes
1 answer

Creating RRD's, Cant quite understand RRA's

I am trying to use RRDtool to create some graphs for monitoring network traffic. I understand how most of the config to create the RRD's works, but im a little lost on the RRA definitions. I want to create RRA's for 1 Hour, 1 Day, 1 Week, 1 Month…
ard
  • 343
  • 1
  • 4
  • 16
0
votes
1 answer

How do RRD values in a database dump translate to the input values?

I am having trouble understanding the values that I have saved in my Round Robin Database. I do a dump with rrdtool dump mydatabase and I get a dump of the data. I found the most recent update, and matched it to my rrd update command: $rrdupdate…
Questionmark
  • 834
  • 2
  • 15
  • 26
0
votes
1 answer

How can we Remove RRD config from Nagios?

I have Nagios setup for Passive monitoring and we don't use RRD data for any purpose. Is there a way to stop data storage and calculation at RRD. (intent here is to save system resource by stopping RRD calculation)
Avijit
  • 1
  • 1
0
votes
1 answer

php rrd_graphs comments position change almost every time

I have a problem with rrd graps - they look different every time. For example: these are 2 graphs generated one by one using the same function. My rrd_graph options looks like this: "--slope-mode", "--start", $start, …
Mr.Tony
  • 13
  • 4
0
votes
0 answers

rrd updated with NaN

I'm trying to update an rrd file with new data every 10 minutes. I've got a cronjob set to run every 10 minutes that should run the update command, but when I dump the contents of the rrd file afterwards, all values show up as NaN. I've looked at a…
fcr91
  • 23
  • 1
  • 7
0
votes
1 answer

rrdtool graphing only 10 hours

I have a strage issue graphing rrdtool, but not always. I will try to explain. I have 2 databases (data1.rrd and data2.rrd) and I graph 1h, 12h, 24h, 1w, 1m and 1y, but for some reason, sometimes the graphs only show 10h of time lapse. I…
Radu Radu
  • 177
  • 16
0
votes
1 answer

RRD dynamic data source

I using Nagios with custom check that will return performance data which I need for graph. Number of performance data can be different overtime. Performance data are stored in RRD and everything works good, but if number of performance data is…
Rohlik
  • 1,286
  • 19
  • 28
0
votes
1 answer

rrdtool: Get the maximum value of the y axis / maximum of all curves

Is there an easy way to get the maximum value of all curves in an rrd chart (which is the computed height of the y axis)? I have a chart with multiple temperature curves. I also have the state of some pumps, represented as 0 or 1. I now want to…
Tobias Leupold
  • 1,512
  • 1
  • 16
  • 41
0
votes
1 answer

Using RRDtool without consolidation function

I want to use rrdtool as a ringbuffer which simply forgets the oldest value if a new value arrives and RRA is full. Is this even possible? Example: rrdtool create database.rrd --step 1 DS:data1:GAUGE:5:U:U RRA::0.5:1:1200 After 20 min the…
PeterFox
  • 19
  • 3
0
votes
1 answer

json fusioncharts and shell script

Hoping someone can help guide me in the right direction. We have an open source monitoring system (Nagios) that utilizes rrdtool solution for graphs. While that's great and all I want to be able to rrdfetch or rrdexport data out via the nagios…
user1999357
  • 113
  • 1
  • 2
  • 11
0
votes
1 answer

Get 95th Percentile only through RRD

Yes I know,…
Recct
  • 913
  • 1
  • 16
  • 40
0
votes
1 answer

RRD works not from shell script

I am using this code to create a graph with the the RRD: #!/bin/sh rrdtool graph tempweek.png \ -s "now - 1 day" -e "now" \ DEF:temp0=temperature.rrd:temp0:AVERAGE \ LINE2:temp0#33E500:Außen \ DEF:temp1=temperature.rrd:temp1:AVERAGE…
ComanderKai77
  • 460
  • 6
  • 14
0
votes
1 answer

python-rrdtool-1.4.7 install on Mac OS X El Capitan

I want to use python to crud rrd ,but when I was pip install python-rrdtool. The warning like this: ➜ python-rrdtool-1.4.7 sudo python setup.py install Password: running install running build running build_ext running build_configure building…
Albert Sun
  • 81
  • 1
  • 4