-
perky committed patchset 34 of module py-rrdtool to the Python RRDTool module CVS repository, changing 10 files.
2006-09-13 09:51:53 UTC by perky
-
perky committed patchset 33 of module py-rrdtool to the Python RRDTool module CVS repository, changing 1 files.
2006-09-13 09:28:55 UTC by perky
-
Logged In: YES
user_id=927681
there was a missing comma in the last post of mine, so where
you see:
rrdtool.create('/tmp/test.rrd' str(my_args_tupple))
it really is:
rrdtool.create('/tmp/test.rrd', str(my_args_tupple))
It was just a typo when posting here.
2006-03-23 18:13:54 UTC by s0undt3ch
-
Logged In: YES
user_id=927681
This Works:
rrdtool.create('/tmp/test.rrd',
'DS:speed:COUNTER:600:0:100000', 'RRA:AVERAGE:0.5:1:24',
'RRA:AVERAGE:0.5:1:48')
With my wrapper I do:
my_args_tupple = ('DS:speed:COUNTER:600:0:100000',
'RRA:AVERAGE:0.5:1:24', 'RRA:AVERAGE:0.5:1:48')
rrdtool.create('/tmp/test.rrd' str(my_args_tupple))
And I get:
_rrdtool.error: can't parse argument...
2006-03-23 18:12:20 UTC by s0undt3ch
-
Make py-rrdtool acept python tuples as an argument, at
least, this will make my life alot easier making an
object oriented wrapper of py-rrdtool.
2006-03-23 18:06:25 UTC by s0undt3ch
-
When will there be an object oriented py-rrdtool?
It's terrebly hard to code with the way the python
bindings are built.
Sure for a custom script it's more than enough, but if
you're trying to build a dynamic python app that uses
rrdtool, hell it's extremely hard!
As an example take a look at
pyrrd(http://projects.adytum.us/tracs/PyRRD), a wrapper
on top of rrdtool, that is suposed...
2006-03-23 02:32:54 UTC by s0undt3ch
-
Logged In: YES
user_id=1335310
I hit this as well on Fedora Core release 4 (Stentz) when
porting from a FC3 box. Has this tool been abandoned? I
don't see any activity on this bug.
2006-02-03 16:54:13 UTC by andrew_b_young
-
Logged In: YES
user_id=55188
Test Comment 1
DODODOD.
2006-01-11 12:58:45 UTC by perky
-
TestSummary
123123.
2006-01-11 12:58:02 UTC by perky
-
Per Gentoo bug
https://bugs.gentoo.org/show_bug.cgi?id=100461 there is
a mismatch in py-rrdtool's _rrdtoolmodule.c and
rrdtool's rrd.h for any version of rrdtool greater than
1.0. The mismatched function is rrd_graph. Below is an
excerpt of the Gentoo bug report:
In src/_rrdtoolmodule.c , i see 5 Parameters:
if (rrd_graph(argc, argv, &calcpr, &xsize, &ysize) ==
-1) {...
2005-12-08 00:26:38 UTC by nobody