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

Rrd4j persistence

I am using rrd4j to do what rrd4j does, and it works great. However, if I shut down my app and start it back up again, the data from the previous session will be gone. I am using a normal file backend, like so: RrdDef rrdDef = new RrdDef(…
jakewins
  • 963
  • 1
  • 6
  • 6
2
votes
1 answer

How to set logarithmic scaling in Nagiosgraph within Nagios?

I have graphs, I have data, but I need it in a logarithmic scale, as we're going from tens to 200K items, and variations are next to impossible to identify. I do not see where/how to edit the proper configuration file(s) to get this set of rrd…
Bee Kay
  • 319
  • 3
  • 11
2
votes
5 answers

Make recommendations on building (or setting up) an RRD Tool based web app for website monitoring that is simpler than Cacti?

I think Cacti is great except for the fact that it takes hours to configure it. There is a lot that you can do with it but I find it a little overly complicated. A script collecting disk utilization recently broke on me (for no apparent reason), I…
Dave Jensen
  • 4,574
  • 1
  • 40
  • 45
2
votes
1 answer

show additional information in legend in flot chart

I am using javascriptRRD library to read rrd files and plots graph via float charts. When chart is plotted I only see the legend having color info of value to be plotted . I additional require minimum , maximum, and current values of the data…
Bhupendra
  • 1,196
  • 16
  • 39
2
votes
0 answers

Ganglia - Default graphs not showing up

I am using Ganglia UI to monitor a bunch of distributed clusters. All the graphs are working except the default graphs (load, memory, cpu and network). Ganglia gmond is not storing those information in rrd. This is the error I am getting while…
Himanshu
  • 1,433
  • 4
  • 24
  • 35
2
votes
0 answers

Python RRDtool installation issue on windows 7

Hi guys i'm new to rrdtool , i want to use rrdtool for one of my python projects, i'm trying to install rrdtool by typing this script in my command prompt "python setup.py install build --compiler=mingw32 " this is the output that i get : running…
thecreator232
  • 2,145
  • 1
  • 36
  • 51
2
votes
1 answer

RRD raw data to JSON

Can someone explain me how to extract the raw data from RRD to JSON, or to Highcharts data? I need to search with the date range and convert data to Highcharts. Thanks in advance.
Relesman
  • 21
  • 2
2
votes
1 answer

Cacti graph not showing properly

Hoping to reach all of you Cacti experts right there. I have tried posting the same issue on the Cacti forums website, but after nearly a week had no answer. Hoping to have more luck here. I'm pretty new to Cacti, and in the past days I've worked my…
Diferdin
  • 1,252
  • 1
  • 14
  • 30
2
votes
3 answers

Python (PyRRD) and RRD with while loop?

SOLVED, ADDED SOLUTION FURTHER DOWN I've been trying to create a graph with PyRRD from the output of a thermal sensor I have connected to my Raspberry Pi, but with no luck getting the actual data to show up in the graph (but the png-file is…
MufflerEU
  • 43
  • 1
  • 5
2
votes
1 answer

How do I change RRDTool graphs?

I'm starting to use Ganglia, which uses rrdtool which are great tools! I would like to change the way of charts, graphs are generated, 'cause I would like to generate charts with HighCharts. RRDTool generates an img which I can change the way it's…
Valter Silva
  • 16,446
  • 52
  • 137
  • 218
2
votes
1 answer

RRDTool: Can't figure out how to update database

I'm trying to set up a RRD, but I cannot seem to get the database to store any values. Here's how I've created my database: rrdtool create test.rrd -s 60 \ DS:local_alloc_procs:GAUGE:10:0:U \ RRA:AVERAGE:0.5:1:10080 And I have a script, which cron…
denvaar
  • 2,174
  • 2
  • 22
  • 26
2
votes
1 answer

values get updated in RRD DB but doesnt reflect when doing a fetch or dump

i am populating an rrd db once an hour. The value gets successfully updated in rrd db but it doesnt doesnt get updated to archives Whenever i try to fetch data using rrdfetch it return NaN and rrddump showns dump too. but rrdtool info shows the last…
Anuj
  • 9,222
  • 8
  • 33
  • 30
1
vote
1 answer

rrd-tool how to detect variations and send alarms (email, sound, etc...)

I use rrd-tool, but now what I want to do is to send an alert if something does not follow the expected values. I tried the rrdtool Holt-Winters feture, but I was looking for something simpler. Any suggestions?
arrrrgv
  • 141
  • 1
  • 4
1
vote
1 answer

How to use rrdfetch with timezone

Using RRD in my application I am trying to find a way to execute "rrdtool fetch" with specific timezone. In my case "Europe/Sofia" which is "+02:00" summer "+03:00" from UTC. Get this command rrdtool fetch test.rrd MAX -r 86400 -s -90d -e now Is it…
Davosss
  • 61
  • 1
  • 7
1
vote
2 answers

Write dict to csv with integers as keys

I have a dict with epoch times as keys. It looks like this: my_dict = {199934234: "val1", 1999234234: "val2"} When trying to write it to a csv, I get the error "iterable expected, not int". There is no problem, however, when using regular…
Max J.
  • 153
  • 12
1 2
3
13 14