RRDtool (acronym for round-robin database tool) aims to handle time-series data like network bandwidth, temperatures, CPU load etc.
-1
votes
1answer
215 views
How to visualize content of RRD file
I have a rrd file that i have created using python + rrdtool lib.
How can i look at the content of this file ? is there any way other then fetching data from rrdtool API?
Is there any RRD editor ?
...
1
vote
1answer
297 views
rrdtool update from multiple flat files using awk and sort
As the title suggests I have data stored in multiple flat files in the following format:
215,,,215,16.4,0,2011/05/11 00:00:06
215,,,215,16.3,0,2011/05/11 00:00:23
217,,,217,16.3,0,2011/05/11 00:00:11
...
0
votes
1answer
180 views
Updates to RRD fail after new datasource added
A little background
I have a single RRD that exists to hold aggregated values of 1500+ individual RRDs (there are 1500+ devices i am monitoring). I do this so that I do not hit 1500+ RRDs when I am ...
1
vote
1answer
1k views
RRDTool GPRINT formatting with printf
Closely related to this question: Bash printf prefix
I have the following Bash script that is generating an RRDGraph with RRDTool.
#!/bin/bash
now=$(date +%s)
now_formatted=$(date +%s | awk ...
0
votes
1answer
789 views
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 ...
1
vote
1answer
823 views
Nagiosgraph rrd files not created(maybe because of map file)
I'm having a problem with Nagiosgraph. I have created a nagios check which monitors the traffic on a server/workstation through SNMP and the output of the check is a long string that looks like this:
...
0
votes
1answer
190 views
RRDtool force the step parameter when xporting data
I'm using a javascript library to visualize rrdtool data and using rrdtool xport to retreive the data from the rrd files.
Today I noticed the following:
When viewing the data from now-1day: there is ...
0
votes
1answer
92 views
how can I prune a rrd file by date
Hello is there a way to prune a rrd file by date? It seems posible as rrdtool dump file dumps
<!-- 2012-05-07 19:15:00 UTC / 1336418100 --> <row><v> 0.0000000000e+00 ...
1
vote
1answer
811 views
Transformation from RRD to CSV
I use JavaMelody tool to monitoring my application, but the available timeline settings aren't suitable. It means I want to get monitoring scores for only quick timeline, like 30 minutes, but the ...
2
votes
0answers
304 views
Which RRD interface to use?
I'm looking to create graphs from data in a MySQL database using Python and RRD. I see that there are two RRD interfaces:
RRDTool
PyRRD
Is there a general preference/reason to choose one over the ...
1
vote
2answers
1k views
Remove data from RRDTool
I have several graphs created by RRDTool that collected bad data during a time period of a couple hours.
How can I remove the data from the RRD's during that time period so that it no longer ...
0
votes
1answer
825 views
rrdtool fetch output
I want to get an average of last 7 days readings from rrd database. I am using the rrdtool fetch for the same then calculating the average. I ran the following commands:
> rrdtool fetch ...
0
votes
0answers
129 views
How to hide Y axile? [closed]
How to remove y-axile, but show right-y-axile when I use rrdtool graph?
python example:
rrdtool.create(rrd_file,
"--step", "86400",
"DS:available:GAUGE:172800:0.0:100.0",
...
2
votes
3answers
1k views
Merge multiple RRDs over time
I've got an old RRD file that was only set up to track 1 year of history. I decided more history would be nice. I did rrdtool resize, and the RRD is now bigger. I've got old backups of this RRD ...
0
votes
1answer
202 views
Collectd plugin is reporting an absolute value instead of the delta, for RRD like “Counter” type, to mongo
So I am writing a read plugin, openvz_guest_bandwidth, for Collectd where I read how much bandwidth Openvz guests are doing, by using libiptc to query how much external bandwidth each guest is doing.
...
0
votes
1answer
224 views
Mailgraph.cgi script error
I have installed rrdtool 1.4.7 and on testing with http://localhost/mailgraph.cgi.I get the error below:
Premature end of script headers: mailgraph.cgi, referer: http://localhost/mailgraph.cgi.
How ...
0
votes
1answer
70 views
How can I query a single value, at a certain time, from rrdtool?
It seems that rrdtool comes with functionality to query a range of values at a certain resolution. But can I simply query the value for a certain point in time? How?
2
votes
1answer
463 views
Getting parsable data from rrdtool graph
I want to extract some hourly data from rrdtool databases in order to create some graphs within a dashboard system.
These databases don't have an hourly datasource, the closest is a 30-min datasource ...
1
vote
1answer
530 views
How to install RRDTool::OO on Strawberry perl
I'm actually trying to install RRDTool on windows, using strawberry perl and it's nice cpan command.
The issue is that the tool will not install correctly the RRDTool package, on which the ::OO ...
0
votes
1answer
152 views
average hourly traffic over the year
After hours of searching the web (including SO), I am requesting advice from the community. RRD seems to be the right tool for this, but I could not get a straight answer until now.
My question is : ...
2
votes
1answer
527 views
How to make RRDtool use commas instead of dots as decimal separators in graphs
I'm using RRDtool through a Perl script (RRDs) to visualize temperature readings. As I want everything in the graph to be shown in Swedish (weekdays etc), I set the locale to sv_SE.UTF-8 in my Perl ...
0
votes
1answer
399 views
rrdtool Holt-Winters feature
I mainly write because I'm using the rrdtool holt-winters feature, but sadly it does not work as I would, starting I'll write for you the rrd file command line creation:
`/usr/bin/rrdtool create ...
1
vote
1answer
167 views
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 ...
1
vote
1answer
267 views
PHP script to update rrd database
I must developing an network monitor to monitoring several components using snmp. I save all received data in a round robin database.
I started to create an web based configuration center, that ...
0
votes
1answer
347 views
RRDTool for php in Windows
I want to use the rrdtool extension for php to create graphs in windows. I need an php_rrdtools.dll or something like that.
Can anyone help me to create the php extensions to work with rrdtools or ...
1
vote
1answer
538 views
rrdtool graph slightly different graph
First I will say that even after setting up a system where I register the each minute total of http responses (200, 301, 302, etc) and I'm able to know how is going on the performance speaking about ...
2
votes
2answers
2k views
Easily parsable output from rrdtool
I'm working with a large bunch of RRD-files, where I have to query the data quite a lot - and mostly by reading all the data and pass it on.
Currently, I use rrdtool fetch <filename> CF --start ...
1
vote
0answers
118 views
RRDTool: Cannot plot line or area (plot empty)
I've been trying to get to grips with RRDTool. Aside from the data acquisition and storage, I'm having trouble plotting anything at all.
Using it like this doesn't return anything, i.e. no png is ...
0
votes
1answer
141 views
Accumulate multiple updates to rrd
My use case is that there are updates coming from multiple sources and i've to store sum of all updates. One way is that i create separate rrd files for each source and run a cron that stores sum to ...
1
vote
2answers
553 views
How to call threadsafe rrd_update_r Round Robin Database function with C API?
Can anybody help me to find out how to call rrd_update_r function of the rrdtool c API from http://oss.oetiker.ch/rrdtool/index.en.html?
It was quite easy to call the non-threadsafe version of ...
0
votes
1answer
183 views
Reporting solution for a 100,000 user base website, rrd?
Customer's website is a 100,000 user base website with million records of transaction data, currently the site uses RRDTool to generate several reports for every user in scheduled jobs, the concerns ...
0
votes
1answer
465 views
How do tell rrdtool what time zone to use for the x-axis in a graph?
When the daily tick marks on my graph didn’t line up with crisp changes in my data at 00:00, I realized I had a time zone issue. Rrdtool is using my local time zone (UTC+6 for instance) to choose the ...
0
votes
1answer
388 views
RRDs::fetch implementation using RRDtool
I have some legacy code which uses the RRDs module (RRDs::fetch), but now the RRD file generation is changed.
A 64-bit program is generating an RRD file which can't be read by 32-bit Perl. So I am ...
0
votes
1answer
334 views
Trouble updating an RRDtool database
I created a database with the following syntax.
rrdtool create mydatabase.rrd -s 60 \
DS:users:COUNTER:600:0:U \
DS:activeusers:GAUGE:600:0:U \
RRA:AVERAGE:0.5:360:576 \
RRA:AVERAGE:0.5:8640:672 \
...
0
votes
1answer
708 views
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
...
3
votes
1answer
881 views
Round Robin data storage for non-regular interval time series data
I am looking for the best mechanism to store a bunch of environmental data and like the concept of a round-robin database (rrd) to cap the size of the database. This will be used for a Java Web-app so ...
0
votes
1answer
398 views
RRD to measure CPU and Memory usage
I would like to measure CPU and Memory usages for a server during continuous integration, And I would represent them into several graphs. I use Round Robin Database files (*.rrd) to do it in java with ...
1
vote
1answer
481 views
How to make two lines appear on the same height in RRDtool?
I'm using RRDtool to greate graphs.
Now, this command:
rrdtool graph temp.png \
-w 600 -h 200 \
--zoom 1 \
--title "last 24 hours temperature" \
--vertical-label "temperature (°C)" \
...
0
votes
1answer
392 views
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
0
votes
1answer
156 views
Data retrival/storage & graphing solution selection
Good day everyone!
Our company have a need to set up some solution, that would allow us to grap almost live (1 second interval) data, from electrical equipment. Currently, the thing we are using, is ...
0
votes
3answers
1k views
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 ...
0
votes
1answer
487 views
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 ...
0
votes
2answers
520 views
Ganglia Metric Value Decay To Zero
I am sending metrics to Ganglia using Gmetric once every 5 minutes. But if the cron task that is sending the metrics is not working, I would expect the metric value on the Ganglia graph to go to zero, ...
0
votes
2answers
141 views
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:
...
2
votes
4answers
1k views
Unable to import RRDtool in Python
I am trying to import RRDtool into Python as I want to access an RRD database using Python, but when I am trying to import rrdtool I am getting the following error.
Python 2.6.5 (r265:79063, Apr 16 ...
22
votes
3answers
1k views
Fastest & most flexible way to chart over 2 million rows of flat file data?
I'm collecting some system data in a flatfile, which has this format:
YYYY-MM-DD-HH24:MI:SS DD1 DD2 DD3 DD4
Where DD1-DD4 are four items of data.
An example of the file is this:
...
1
vote
1answer
1k views
not able to fetch the data from rrd file
I am using RRDTool version 1.2.30 on windows platform, i have one .rrd file and when i tried to fetch data using 'rrdtool fetch' it is giving me following error.
ERROR: the RRD does not contain ...
-1
votes
1answer
727 views
RRDTool data source type selection
I have a question related to RRDTool DST. I need to create a database in such a way that even the data is the same (for example, I have six entries per hour with the same value). RRDTool must ...
1
vote
2answers
910 views
RRDTool legend label placement
Here is my current chart:
http://d.pr/s2DC+
Titles in right column are at wrong place, as you see on the image. Can anyone help me to correct?
rrdtool graph ...
COMMENT:' ' \
...
0
votes
1answer
520 views
Problem with RDD bash script variable
I have the folowing bash script i'm trying to implement, but it fails awfully, can anyone help me with some advice...
#!/bin/bash
FILE='/var/www/router.rrd'
OUTPUT='/var/www/router.png'
...
