Re: [collectd] notification messages do not have datasource(s)

2012-04-19 Thread Jason Stelzer
Nevermind. There's metadata attached to the notification that I can iterate over. On Thu, Apr 19, 2012 at 3:10 PM, Jason Stelzer jason.stel...@gmail.com wrote: I am using collectd 5.0.1 The struct in plugin.h has plugin, plugin_instance, type, and type_instance defined in notifcation_t. It

[collectd] Threshold settings and missed packets

2012-04-19 Thread Jason Stelzer
Hopefully this is just me misconfiguring something simple. Correct me where I'm wrong, but if an 'interesting' stat is not reported... only one notification is sent after you cross whatever you've defined as the Threshold. If you miss the packet/notice for any reason, you're SOL. Is there a way

Re: [collectd] collectd) memory usage growing in python plugin.

2012-04-19 Thread James김민석
Hello, I've checked the collectd source code from 'collectd-5.0' branch in git. and made some patch to relieve the memory leak symptoms. The solution was all about releasing the reference count of 'new reference' python object in python extension. There is wonderful document about python