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

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

Moved database dir | Can't acess mysql through default port 3306 from localhost or poller

WORK: The only way I can localy acess is to specify the locaction dir of the database in DATABASE_PORT ex: $database_type = 'mysql'; $database_default = 'database'; $database_hostname = 'localhost'; $database_username =…
Jhonatan M
  • 31
  • 2
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

rrd4j with java

I am currently developing a program with Java that collect and illustrate IP traffic from similar information and draw the graph of this information. So I must use rrd4j rrd with java to save the data flow from a JTable in another table first and…
Jerbi
  • 1
  • 4
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
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

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

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

How to create a rrd file with a specific time?

I had created a rrd file with a specific time. But when i convert it into xml, i find the start time is inconsitent with the specified time. The version of rrdtool is 1.5.5. And the code is > rrdtool create abc.rrd \ > step 15 --start 1554122342 \…
wanncy
  • 77
  • 7
0
votes
3 answers

How can you properly read RRD files using Java?

How can you properly read RRD files using Java? We are using tools like JRobin, etc. but my team is having problems with those tools, they don't seem to properly read the RRD files. We need to use RRDTool, and that tool is an importable library for…
Shankar Raju
  • 4,356
  • 6
  • 33
  • 52
0
votes
1 answer

store string data in rrd database

is it possible to store string data in rrd database for example , if i want to store Employee Name Employee Address Employee Phone Employee Mac Addr in rrd database using py-rrdtool , if it is possible then how to do that can any give me road…
Hunt
  • 8,215
  • 28
  • 116
  • 256
0
votes
1 answer

Get Maximum and Minimum value from rrd file generated by Cacti

I have an rrd file in which traffic_in and out stats of interfaces are stored. What i want is that i want Max and min values in certain time period. I'm trying this command but it is giving me error ERROR: invalid rpn expression in: v,MAX rrdtool…
Terminator
  • 117
  • 7
0
votes
1 answer

Adding values from multiple .rrd file

Problem =====> Basically there are three .rrd which are generated for three departments. From that we fetch three values (MIN, MAX, CURRENT) and print ins 3x3 format. There is a python script which does that. eg - Dept1: Min=10 Max=20 Cur=15 Dept2:…
0
votes
2 answers

Unable to access file as a database in django

In my django application structure is as follows: __init__.py __init__.pyc models.py tests.py usage.rrd views.py views.pyc I am trying to access the usage.rrd file in views.py as follows: from django.http import HttpResponse import…
Hunt
  • 8,215
  • 28
  • 116
  • 256