[collectd] *.rrd files do not get updated

2013-02-04 Thread ml ml
Hello List, i installed collectd 5.1.2 from source and my clients appear in my collectd list, the rrd file also get created but never updated. How can i debug my problem? Thanks, Mario ___ collectd mailing list collectd@verplant.org

Re: [collectd] *.rrd files do not get updated

2013-02-04 Thread Yves Mettier
Hello, Some tips if you are running collectd with rrdcached - permission problem ? (collectd maybe not running with the same user as rrdcached) - rrdcached has data in cache and will write it later on your disk ? Just wait a while (the while length is defined in your rrdcached configuration

[collectd] Msql plugin, Slave lag?

2013-02-04 Thread Robert Ely
Is it currently possible to get seconds behind master from the collectd mysql plugin ? I haven't seen any obvious ways to get it, however i see references to it in the source. -- _Rob -- The above terms reflect a potential business arrangement, are provided solely as a basis for further

Re: [collectd] [PATCH] Allow out-of-tree builds

2013-02-04 Thread Dan Fandrich
On Sun, Feb 03, 2013 at 01:17:24PM +0100, Florian Forster wrote: +AM_CPPFLAGS += -I$(top_builddir)/src/libcollectdclient/collectd Since binaries using the library need to get linked to it, and not all binaries are, I think I'd rather add this to the binary specific CPP flags, i.e.:

[collectd] [PATCH] Add protection from infinite redirect loops to curl-using plugins

2013-02-04 Thread Dan Fandrich
--- src/apache.c |1 + src/ascent.c |1 + src/bind.c |1 + src/curl.c |1 + src/nginx.c |1 + 5 files changed, 5 insertions(+) diff --git a/src/apache.c b/src/apache.c index 202b73c..e562138 100644 --- a/src/apache.c +++ b/src/apache.c @@ -426,6 +426,7 @@ static int

[collectd] [PATCH] curl* plugins: Added support for POST and arbitrary headers

2013-02-04 Thread Dan Fandrich
These plugins can now be used for things like SOAP or XML-RPC calls. --- src/collectd.conf.pod | 41 - src/curl.c| 29 + src/curl_json.c | 28 src/curl_xml.c| 28

Re: [collectd] [PATCH] curl* plugins: Added support for POST and arbitrary headers

2013-02-04 Thread Kimo Rosenbaum
Hello Dan, Would you mind creating a pull request (https://github.com/collectd/collectd/pulls)? (or attach as an attachment) I would like to try this patch but I think my email client is eating it up. Thanks Kimo From: Dan Fandrich d...@coneharvesters.com

[collectd] A couple of collectd crashes

2013-02-04 Thread Dan Fandrich
I managed to get collectd to segfault in a couple of places while playing with it a bit. The first is in the curl_xml module when the XPATH expression doesn't quite match the input. The crash occurs on line 407 when instance_node-nodeTab[0] is dereferenced. At this point, all members of

Re: [collectd] [PATCH] curl* plugins: Added support for POST and arbitrary headers

2013-02-04 Thread Dan Fandrich
On Mon, Feb 04, 2013 at 02:36:17PM -0800, Kimo Rosenbaum wrote: Would you mind creating a pull request (https://github.com/collectd/collectd/pulls)? (or attach as an attachment) I would like to try this patch but I think my email client is eating it up. Here it is as an attachment. Dan

Re: [collectd] A couple of collectd crashes

2013-02-04 Thread Dan Fandrich
On Tue, Feb 05, 2013 at 12:02:17AM +0100, Dan Fandrich wrote: I managed to get collectd to segfault in a couple of places while playing with it a bit. The first is in the curl_xml module when the XPATH expression doesn't quite match the input. I've spotted some other questionable code around