py-rrdtool-devel Mailing List for Python RRDTool module
Status: Beta
Brought to you by:
perky
You can subscribe to this list here.
2005 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
(1) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2006 |
Jan
|
Feb
|
Mar
(3) |
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
(1) |
Dec
|
From: Hermann L. <Her...@iw...> - 2006-11-16 16:53:15
|
Hello, attached is a patch which fixes a off by one error in py-rrdtool compiled against rrdtool-1.2.15. Two word of docuentation are also included. Please consider for inclusion. Thanks, greetings Hermann -- Netzwerkadministration/Zentrale Dienste, Interdiziplinaeres Zentrum fuer wissenschaftliches Rechnen der Universitaet Heidelberg IWR; INF 368; 69120 Heidelberg; Tel: (06221)54-8236 Fax: -5224 Email: Her...@iw... |
From: SourceForge.net <no...@so...> - 2006-03-23 18:31:16
|
Bugs item #1457153, was opened at 2006-03-23 18:06 Message generated for change (Comment added) made by s0undt3ch You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=618943&aid=1457153&group_id=97739 Please note that this message will contain a full copy of the comment thread, including the initial issue submission, for this request, not just the latest update. Category: None Group: None Status: Open Resolution: None Priority: 9 Submitted By: Pedro Algarvio (s0undt3ch) Assigned to: Nobody/Anonymous (nobody) Summary: Make py-rrdtool acept python tuples as an argument Initial Comment: 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. ---------------------------------------------------------------------- >Comment By: Pedro Algarvio (s0undt3ch) Date: 2006-03-23 18:12 Message: 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 '('DS:speed:COUNTER:600:0:100000', 'RRA:AVERAGE:0.5:1:24', 'RRA:AVERAGE:0.5:1:48')' What's the prob here? Probably a stupid one... ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=618943&aid=1457153&group_id=97739 |
From: SourceForge.net <no...@so...> - 2006-03-23 02:33:36
|
Bugs item #1456637, was opened at 2006-03-23 02:32 Message generated for change (Settings changed) made by s0undt3ch You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=618943&aid=1456637&group_id=97739 Please note that this message will contain a full copy of the comment thread, including the initial issue submission, for this request, not just the latest update. Category: None Group: None Status: Open Resolution: None >Priority: 9 Submitted By: Pedro Algarvio (s0undt3ch) Assigned to: Nobody/Anonymous (nobody) Summary: When will there be an object oriented py-rrdtool? Initial Comment: 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 to some day support the python bindings. Right now it passes everything to subprocess.Popen and does not escape '(' and ')' for example, nor does it support 'a title with spaces' for example, it's extremely imature, but it's the way this bindings should go I think. Thanks for the job done so far... ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=618943&aid=1456637&group_id=97739 |
From: SourceForge.net <no...@so...> - 2006-03-23 02:32:55
|
Bugs item #1456637, was opened at 2006-03-23 02:32 Message generated for change (Tracker Item Submitted) made by Item Submitter You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=618943&aid=1456637&group_id=97739 Please note that this message will contain a full copy of the comment thread, including the initial issue submission, for this request, not just the latest update. Category: None Group: None Status: Open Resolution: None Priority: 5 Submitted By: Pedro Algarvio (s0undt3ch) Assigned to: Nobody/Anonymous (nobody) Summary: When will there be an object oriented py-rrdtool? Initial Comment: 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 to some day support the python bindings. Right now it passes everything to subprocess.Popen and does not escape '(' and ')' for example, nor does it support 'a title with spaces' for example, it's extremely imature, but it's the way this bindings should go I think. Thanks for the job done so far... ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=618943&aid=1456637&group_id=97739 |
From: SourceForge.net <no...@so...> - 2005-12-08 00:26:40
|
Bugs item #1375827, was opened at 2005-12-07 16:26 Message generated for change (Tracker Item Submitted) made by Item Submitter You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=618943&aid=1375827&group_id=97739 Please note that this message will contain a full copy of the comment thread, including the initial issue submission, for this request, not just the latest update. Category: None Group: None Status: Open Resolution: None Priority: 5 Submitted By: Nobody/Anonymous (nobody) Assigned to: Nobody/Anonymous (nobody) Summary: py-rrdtool _rrdtoolmodule.c and rrdtool rrd.h mismatch Initial Comment: 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) { /usr/include/rrd.h shows me 8 Parameters: int rrd_graph(int, char **, char ***, int *, int *, FILE *, double *, double *); Please contact me at iggiflynn at pobox.com for questions. ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=618943&aid=1375827&group_id=97739 |