Tagged Questions
1
vote
4answers
335 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 ...
1
vote
1answer
440 views
Looking for a python library to parse RRD databases
I have an RRD database, and I want to parse some of the data in it. I found this:
http://pypi.python.org/pypi/PyRRD/0.0.7
but it basically just calls the command line tools (no parsing).
Does ...
1
vote
3answers
1k views
Concurrent Access to RRD (RRDTool)
I am using RRDTool (http://oss.oetiker.ch/rrdtool/) as a graphing back-end for storing performance metrics. This is done via the RRDTool CLI from a Python script.
My problem is that the script is ...
0
votes
3answers
419 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
2answers
80 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:
...