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

Creation of RRD files with C++ on Raspberry behaves strangely

I want to use my Raspberry Pi to record temperature from a series of sensors. For this purpose I am writing a C++ program which uses librrd. For every connected sensor I want to create a rrd with 12 rra. The following call should create my wanted…
Nazrim
  • 35
  • 11
0
votes
1 answer

Ganglia Network monitoring Calculate values out of rrd files

Im searching for some documentary but i couldnt really find anything and im really confused about the network monitoring in Ganglia. So i want to know how much network traffic my hosts have. If i use the webinterface im seeing this graph : That is…
Hannes
  • 442
  • 1
  • 6
  • 23
0
votes
1 answer

rrdtool line labels near lines and not in legend

In rrdtool I am having a graph with multiple lines, and using different colors (or dashed lines) is not very convenient to distinguish the different time-series. Is it possible to display the line labels/names near or at the end of the lines in…
Konstantinos
  • 4,096
  • 3
  • 19
  • 28
0
votes
1 answer

ConsolFun.LAST does not return last values

The purpose is to do statistics on user count of my website. I want to display current user count and previous 10 days user count. Here is a test I did: RrdDef rrdDef = new RrdDef("test", 60*60*24); rrdDef.setStartTime(Util.getTime() -…
Jérôme Herry
  • 187
  • 2
  • 7
0
votes
1 answer

How to work with the COUNTER in Nagios or RRD?

I have the following problem: I want to do the statistics of data that need to be constantly increasing. For example, the number of visits to the link. After some time be restarted these visit and start again from the beginning. To have a continuous…
Krasimir
  • 1,806
  • 2
  • 18
  • 31
0
votes
2 answers

Tracking/Monitoring sudden trend changes

I track alot of things with RRD, eg, uptime, network throughput, etc. This works well when you can fit all the graphs on a single page, however, once you scale beyond a page it becomes difficult to use graphs to catch issues, you need to look at…
Matthew Watson
  • 14,083
  • 9
  • 62
  • 82
0
votes
1 answer

php RRD Graph floating values instead of integers

I am producing an rrd graph and I am facing 2 problems. Problem 1: The numbers that I am printing they are integers without decimals, although when they are printed decimals appear. It is really confusing. So I looked online on the rrdgraph_graph…
thanos
  • 111
  • 1
  • 4
  • 10
0
votes
1 answer

php RRD graph separation

I am trying to create RRD graphs with the help of PHP in order to keep track of the inoctets,outoctets and counter of a server. So far the script is operating as expected but my problems comes when I am trying to produce 2 or more separate graphs. I…
thanos
  • 111
  • 1
  • 4
  • 10
0
votes
1 answer

PHP RRD Date input as commend

I have been trying to produce an RRD graph through PHP. So far it works fine apart from the last line that I want to have the last update date/time. I have been searching online, but I can not find relevant information to my problem. I found a…
thanos
  • 111
  • 1
  • 4
  • 10
0
votes
1 answer

explain me a difference of how MRTG measures incoming data

Everyone knows that MRTG needs at least one value to be passed on it's input. In per-target options MRTG has 'gauge', 'absolute' and default (with no options) behavior of 'what to do with incoming data'. Or, how to count it. Lets look at the…
remort
  • 304
  • 3
  • 9
0
votes
1 answer

tune rrd to increase step and heartbeat (x2)

I've got a bunch of rrds being updated every 5min step = 300 ds[ExeTime].minimal_heartbeat = 600 I need to change this to every 15min. rrdtool tune allows me to change the heartbeat but not the steps. Can I simply change the heartbeat to 1800?…
Douglas
  • 379
  • 4
  • 16
0
votes
2 answers

Perl RRD::Simple no display data

I am new in Perl and also RRDs. I have tried to implement a simple example, and although it seems that is operating correctly the output is not displayed. The pictures are produced normally but there is no data in the graphs. I have been following…
Thanos
  • 1,618
  • 4
  • 28
  • 49
0
votes
6 answers

How do i run a Linux terminal cmd from a java program

I am trying to call my rrdtool cmd from a java class, not sure how to go about it. I have tested my RRDTool cmd from my terminal and it is successful, see below. rrdtool update mydb.rrd 1385056701:6:5 How do i execute this cmd from a java class?
Fearghal
  • 10,569
  • 17
  • 55
  • 97
0
votes
1 answer

RRD fine tuning

I have used RRD few months back , for my large application where is in I was running around 5k RRD update from my application resulting in huge I?O at my box. I tried many things to improve the performance , but IO and corresponding load just…
Jain Rach
  • 4,069
  • 1
  • 16
  • 25
0
votes
1 answer

Jrobin vs rrd4j

I have to use any of java implementation of rrd. I have been going through rrd4j and jrobin but not sure sure which one to use. So can anyone let me know the difference between rrd4j and jrobin? -- Mini