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

RRD - How to bypass the limitation of MIN and MAX RRAs being NaN for non consolidated CDPs

Let's say I have a RRD with 3 data sources: rtt_min, rtt_avg and rtt_max storing data from network packet round trip time tests. Explanation of each DS is somewhat obvious: rtt_min is a minimum value of all RTT times during a single test. rtt_avg…
pajaja
  • 2,164
  • 4
  • 25
  • 33
0
votes
1 answer

librrd_th.so in rrdtool 1.7.0 under CentOS 8

I'm trying to recompile some old software that uses rrdtool under CentOS 8. The application is looking for librrd_th.so. The rrdtool with CentOS 8 is 1.7.0 and I have the -devel package installed too. It looks like rrdtool-1.4.8 under CentOS 7 has…
0
votes
0 answers

The output of my graph from rrdtool is blank. Why?

I'm wanting to graph the memory of certain processes in windows using rrdtool which I can then show in a simple webpage. So I got this far. Not quite sure I understand how it works after following some tutorials I get blank output. rrdtool create…
hookenz
  • 36,432
  • 45
  • 177
  • 286
0
votes
1 answer

set network interface counters (rx, tx, packets, bytes)

Is it possible to SET the interface statistics in Linux after it's been brought up? I'm dealing with rrdtool (mrtg) that gets upset by a daily ifdown and ifup which brings the interface counters back to zero. Ideally I would like to continue…
captcha
  • 348
  • 4
  • 18
0
votes
2 answers

RRDTool: RRD file not updating

My RRD file is not updating, what is the reason? The graph shows the legend with: -nanv I created the RRD file using this syntax: rrdtool create ups.rrd --step 300 DS:input:GAUGE:600:0:360 DS:output:GAUGE:600:0:360 DS:temp:GAUGE:600:0:100…
HyperDevil
  • 2,519
  • 9
  • 38
  • 52
0
votes
1 answer

Rrdtool line graph style

I'm learning this linux package, I can't find style information, is it possible to create graphs similar in appearance like this: https://canvasjs.com/php-charts/json-data-api-ajax-chart/ rrdtool graph graph.png \ --start -10m \ --title "CPU…
TwitchThis
  • 15
  • 5
0
votes
1 answer

RRDTool data values (e.g. max value) are different in different time resolutions

currently I'm experimenting a bit with RRDTool. I'm aware that the accuracy gets lower the longer the time periods are selected. But I thought I could bypass this with my datasource settings. For example temperature and humidity from my house,…
Chris
  • 307
  • 2
  • 19
0
votes
1 answer

How to calculate DEF total using RRDTOOL

I am trying to calculate the total octets_in using python rrdtool. I have this but it's not giving me the correct output. here is a data sample [ 406.29947919463086 ], [ 433.0391666666667 ], [ 430.70380365448506 ] I want the total to be…
Jebanisa
  • 111
  • 2
  • 15
0
votes
1 answer

Removing unwanted gridlines in RRDtool

I'm currently making a number of graphs for users on a server. The code 'm using is as follows: $RRDTOOL graph $SCUMCOUNTPATH/mtghour.png \ --start now-3600s --end now \ --alt-autoscale \ -w 343 -h 85 \ --lower-limit 0 \ --title…
Jim
  • 2,243
  • 2
  • 13
  • 17
0
votes
0 answers

What's the `feed data` and `store data` for database?

Is there difference between feed data and store data? I am watching the Tutorial in the 9:00 moment. It introduce the rrdtool, there are feed data and store data nouns. I want to know whether the feed data is provide to the RRD, and store data will…
user7693832
  • 6,119
  • 19
  • 63
  • 114
0
votes
1 answer

rrdtool update expected 2 data sources

I wrote a simple rrdtool database to graph Wi-Fi signal strength and modulation. The signal strength works, but when I try to update the db with MCS information, I get: ERROR: ./somefile.rrd: expected 2 data source readings (got 1) from…
batflaps
  • 261
  • 3
  • 12
0
votes
1 answer

Logging home natural gas usage using rrdtool

I'm pulling home gas usage from my meter at home, and trying to save it to an RRD database, and pulling from there to create a graph, using rrdtool. I've been doing this for different data sources using GAUGE db types, those are all…
klokop
  • 2,414
  • 2
  • 18
  • 22
0
votes
1 answer

RRD Tool - confusing start time

I'm setting up a rrd database to store sensor data for 3 days in 12hr intervalls (43200s) = 6 row in RRA. rrdtool create test.rrd --step 43200 --start 1562429286 DS:temp:GAUGE:86400:U:U RRA:AVERAGE:0:1:6 The databases starting time is 1562429286…
user9753306
0
votes
1 answer

Where can i find RDDTool php extension for Windows?

i'm trying to use RDDTool with my apache/php5 on Windows but i can't find the extension for php.. can you help me ? does it exist ? how can i do with the rrdtool.exe only ? Thanks
Fredv
  • 552
  • 1
  • 8
  • 22
0
votes
1 answer

How does rrdtool RRDB associate/bind an RRA to a DS?

How does rrdtool RRDB associate/bind an RRA to a DS? An XML dump does not seem to reveal where this binding info is kept. Neither does rrdinfo. But this info must be in there, because multiple RRAs can be associated with a single DS. Perhaps Am I…
user174626
  • 13
  • 3