[collectd-changes] collectd, the system statistics collection daemon: Changes to 'next'

Florian Forster octo<span style="display: none;">.trailing-username</span>(a)<span style="display: none;">leading-domain.</span>verplant.org
Sat Dec 2 19:18:40 CET 2006


New branch 'next' available with the following commits:
commit 845b2d2577461a4bc2bf4385cb521b4ad575651d
Merge: 0b5b7d3f65c22163a1bf1a9f2ba55e3965e47151 c4377c1e3d97ae0641bf740dc90a59633b319fd1 578f62451f20db8771ada96759918b53a5a025c4
Author: Florian Forster <octo<span style="display: none;">.trailing-username</span>(a)<span style="display: none;">leading-domain.</span>leeloo.lan.home.verplant.org>
Date:   Sat Dec 2 19:17:50 2006 +0100

    Merge branches 'ff/dns' and 'sh/email' into next
    
    Conflicts:
    
    	configure.in
    	src/Makefile.am

commit c4377c1e3d97ae0641bf740dc90a59633b319fd1
Author: Florian Forster <octo<span style="display: none;">.trailing-username</span>(a)<span style="display: none;">leading-domain.</span>leeloo.lan.home.verplant.org>
Date:   Sat Dec 2 19:11:22 2006 +0100

    dns plugin: Improved config checks for the pthread library.
    
    The checks for the pthread-library have been extended to match the other
    libraries being used. The dns plugin (in particular `utils_dns.c') has been
    verified to build without `libpcap' being present.

commit 890c1eb517a4c442f9d967b8766e3908ebe5ba92
Author: Florian Forster <octo<span style="display: none;">.trailing-username</span>(a)<span style="display: none;">leading-domain.</span>leeloo.lan.home.verplant.org>
Date:   Sat Dec 2 19:09:32 2006 +0100

    dns plugin: Added the dns plugin to the sample `collectd.conf'.

commit 578f62451f20db8771ada96759918b53a5a025c4
Author: Sebastian Harl <sh<span style="display: none;">.trailing-username</span>(a)<span style="display: none;">leading-domain.</span>tokkee.org>
Date:   Thu Nov 30 12:02:46 2006 +0100

    email plugin: Use strtok_r() instead of strtok().
    
    strtok() internally uses a static buffer and thus is not thread-safe.
    
    Signed-off-by: Sebastian Harl <sh<span style="display: none;">.trailing-username</span>(a)<span style="display: none;">leading-domain.</span>tokkee.org>

commit 8389947b881b59af994a9b6c8af706446edb25f2
Author: Sebastian Harl <sh<span style="display: none;">.trailing-username</span>(a)<span style="display: none;">leading-domain.</span>tokkee.org>
Date:   Thu Nov 30 12:02:10 2006 +0100

    email plugin: Change owner and mode of the UNIX socket if possible.
    
    Set the owner and mode to COLLECTD_GRP_NAME (defaulting to "collectd") and 0770
    respectively. A couple of different daemons running as different users might
    want to connect to it.
    
    Signed-off-by: Sebastian Harl <sh<span style="display: none;">.trailing-username</span>(a)<span style="display: none;">leading-domain.</span>tokkee.org>

commit bd119c69bf481afbda804cdd422e9ba8e855bccf
Author: Sebastian Harl <sh<span style="display: none;">.trailing-username</span>(a)<span style="display: none;">leading-domain.</span>tokkee.org>
Date:   Thu Nov 30 12:01:32 2006 +0100

    email plugin: Minor code cleanup.
    
    Removed debugging output and whitespaces at end of lines.
    
    Signed-off-by: Sebastian Harl <sh<span style="display: none;">.trailing-username</span>(a)<span style="display: none;">leading-domain.</span>tokkee.org>

commit 0b5b7d3f65c22163a1bf1a9f2ba55e3965e47151
Author: Florian Forster <octo<span style="display: none;">.trailing-username</span>(a)<span style="display: none;">leading-domain.</span>leeloo.lan.home.verplant.org>
Date:   Sat Dec 2 17:51:58 2006 +0100

    src/utils_ignorelist.c: Fix build-problems when building without regex support.

commit 9e137cdbc77ab58680fcf674c7968281eea12492
Author: Florian Forster <octo<span style="display: none;">.trailing-username</span>(a)<span style="display: none;">leading-domain.</span>leeloo.lan.home.verplant.org>
Date:   Sat Dec 2 17:51:16 2006 +0100

    dns plugin: Check for `libpthread' and link the plugin against it.

commit 085e0ec955713a12d2abf9bd181ffc2a360cba78
Author: Florian Forster <octo<span style="display: none;">.trailing-username</span>(a)<span style="display: none;">leading-domain.</span>leeloo.lan.home.verplant.org>
Date:   Sat Dec 2 17:50:37 2006 +0100

    dns plugin: Use `pthread_sigmask' rather than `signal'.

commit ea30b35a3697a7f8c126c35b62653593c08de63c
Author: Florian Forster <octo<span style="display: none;">.trailing-username</span>(a)<span style="display: none;">leading-domain.</span>crystal.wlan.home.verplant.org>
Date:   Sat Dec 2 16:30:38 2006 +0100

    dns plugin: Use threads rather than two processes and a pipe.
    
    This is not only much simpler, code wise, but also more elegant and hopefully
    faster. This code is alpha quality at best.

commit fc257d86996117d80b35909c16fe628a209faf12
Author: Sebastian Harl <sh<span style="display: none;">.trailing-username</span>(a)<span style="display: none;">leading-domain.</span>tokkee.org>
Date:   Tue Nov 28 13:39:51 2006 +0100

    New plugin "email" to collectd ham, spam, ... statistics
    
    This plugin collects email count and size for each type (e.g. ham, spam,
    virus, ...) of emails, spam score values and the count of successful spam
    checks (e.g.  BAYES_99, SUBJECT_DRUG_GAP_C, ...).
    
    These information are provided by external programs which communicate with the
    plugin thru a UNIX socket and a simple line-based protocol:
    
    /* e-mail type (e.g. ham, spam, virus, ...) and size */
    e:<type>:<bytes>
    
    /* spam score */
    s:<value>
    
    /* successful spam checks */
    c:<type1>[,<type2>,...]
    
    At most MAX_CONNS (currently set to 5) clients can connect to the plugin
    simultaneously. Each connection is handled by a separate thread. Any input
    line is limited to 256 characters (including the newline character) which
    ought to be enough for anybody[tm] by definition. "c"-lines have to be split
    up if they grow longer.
    
    Signed-off-by: Sebastian Harl <sh<span style="display: none;">.trailing-username</span>(a)<span style="display: none;">leading-domain.</span>tokkee.org>




More information about the collectd-changes mailing list