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

Florian Forster octo at verplant.org
Thu Jan 22 10:09:29 CET 2009


 README                |    4 +
 configure.in          |    4 +
 src/Makefile.am       |   11 +
 src/bind.c            | 1034 +++++++++++++++++++++++++++++++++++++++++++++++++
 src/collectd.conf.in  |   19 +
 src/collectd.conf.pod |   54 +++
 src/types.db          |    8 +
 src/utils_rrdcreate.c |    7 +-
 8 files changed, 1140 insertions(+), 1 deletions(-)

New commits:
commit e8d081bd185c8dae1233e55741406034b8ba3e2a
Author: Florian Forster <octo at leeloo.lan.home.verplant.org>
Date:   Thu Jan 22 10:08:48 2009 +0100

    src/utils_rrdcreate.c: Fix support for non-threadsafe libraries.

commit 65cc5a005180696134b0dd6ed3bc45860820ca5e
Author: Florian Forster <octo at leeloo.lan.home.verplant.org>
Date:   Thu Jan 22 10:07:49 2009 +0100

    collectd.conf(5): Add some preliminary documentation for the bind plugin.

commit 254ce1279f90858ab3d90b885defb95af3d6d7c1
Merge: 816d4c62bc2a54331b6c66c9d4fa3d846f3931a6 d479f22cf71c80e7c8717a0f6a28dab6ea1d277b
Author: Florian Forster <octo at leeloo.lan.home.verplant.org>
Date:   Thu Jan 22 09:09:18 2009 +0100

    Merge branch 'bp/bind'

commit d479f22cf71c80e7c8717a0f6a28dab6ea1d277b
Author: Florian Forster <octo at huhu.verplant.org>
Date:   Mon Jan 19 13:05:23 2009 +0100

    bind plugin: Don't use LLONG_{MIN,MAX} to increase portability.
    
    Sagly, there's a bug in some versions of GCC/GNU libc which leads to LLONG_*
    not being defined. We'll check the return value of strtoll for `>0' and `<0',
    which should do the trick, too.

commit 7e905b5dbb59d0ba43503896daf2a8dbf102eaba
Merge: e5c3463c070701f4e5556ac3e95b78bb972b5d57 298e7bff0718eb01c51d671140191e2b99869779
Author: Florian Forster <octo at leeloo.lan.home.verplant.org>
Date:   Sun Jan 18 23:14:31 2009 +0100

    Merge branch 'master' into bp/bind

commit e5c3463c070701f4e5556ac3e95b78bb972b5d57
Author: Florian Forster <octo at leeloo.lan.home.verplant.org>
Date:   Sun Jan 18 21:07:17 2009 +0100

    bind plugin: Reworked Bruno's patch to remove repeating code.

commit 8bc093a2476f2bef751c9d3d9e382a7e62d060b3
Author: Florian Forster <octo at leeloo.lan.home.verplant.org>
Date:   Sat Jan 17 12:16:18 2009 +0100

    bind plugin: Eliminate the `goto' in `bind_xml'.

commit 8f9fc8e34747d69dd8fee425a85deb04fc226447
Author: Florian Forster <octo at leeloo.lan.home.verplant.org>
Date:   Sat Jan 17 12:15:49 2009 +0100

    bind plugin: Put removal of special characters in separate function.

commit c99971391922c90a3ec8660ad0036b10bbaa0a0a
Author: Florian Forster <octo at leeloo.lan.home.verplant.org>
Date:   Sat Jan 17 12:01:04 2009 +0100

    bind plugin: Be more specific about the features we need.

commit b38c8bb32741745651fb5694a879d0413fbec8a9
Author: Florian Forster <octo at leeloo.lan.home.verplant.org>
Date:   Sat Jan 17 11:58:30 2009 +0100

    bind plugin: Fix a misplaced comma.

commit db4f7362efcfd89447c950c945f789a44d6e55a5
Author: Bruno Prémont <bonbons at linux-vserver.org>
Date:   Sat Jan 17 11:56:30 2009 +0100

    bind plugin: Add a new plugin for BIND 9.5 and 9.6 statistics.
    
    Attached are patches for collectd-4.5.x and collectd-4.4.x series for a
    plugin to collect statistics from a ISC Bind server.
    
    ISC Bind introduces XML-based statistics which can be fetched via HTTP
    starting with bind-9.5.0 and updated the XML structure with bind-9.6.0.
    Both XML formats are supported by this plugin.
    
    To enable access to these statistics, use the following configuration
    block:
    
    statistics-channels {
            inet localhost port 8053 allow { localhost; };
    };
    
    Suggestions on improving the grouping of statistics values are welcome,
    currently the following groups are implemented:
      RRQueriesIn      type=dns_qtype
      Requests         type=dns_request
      QueryResults     type=dns_rcode
      Updates          type=dns_update
      ZoneMaintenance  type=dns_zops
      Resolver         type=dns_resolver
    
    Bruno




More information about the collectd-changes mailing list