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

Florian Forster octo at verplant.org
Tue Aug 26 19:13:40 CEST 2008


 ChangeLog                   |    5 ++
 bindings/perl/Collectd.pm   |   43 +++++++++++++-
 configure.in                |    2 +-
 src/collectd-perl.pod       |   45 ++++++++++++++
 src/collectd.conf.pod       |   14 +++++
 src/filecount.c             |    4 +-
 src/perl.c                  |  135 +++++++++++++++++++++++++++++++++++++++++++
 src/postgresql.c            |  110 +++++++++++++++++++++++++++++++----
 src/postgresql_default.conf |   15 +++++
 9 files changed, 356 insertions(+), 17 deletions(-)

New commits:
commit 0d9bb598e8ae01a040f6a2d277c8f221ca782fdf
Author: Sebastian Harl <sh at tokkee.org>
Date:   Tue Aug 26 16:16:55 2008 +0200

    postgresql plugin: Check for and report query redefinitions.
    
    Signed-off-by: Sebastian Harl <sh at tokkee.org>
    Signed-off-by: Florian Forster <octo at huhu.verplant.org>

commit a1b6a03888ebeab9d65c2ae2f3376cc46e98bce4
Author: Sebastian Harl <sh at tokkee.org>
Date:   Tue Aug 26 16:15:37 2008 +0200

    postgresql plugin: Check for and report MinPGVersion > MaxPGVersion.
    
    Signed-off-by: Sebastian Harl <sh at tokkee.org>
    Signed-off-by: Florian Forster <octo at huhu.verplant.org>

commit 760f0c791b1c403ed53a96e14c50ad1a044af026
Author: Sebastian Harl <sh at tokkee.org>
Date:   Tue Aug 26 16:14:36 2008 +0200

    postgresql plugin: Disable queries that do not include an SQL query string.
    
    Signed-off-by: Sebastian Harl <sh at tokkee.org>
    Signed-off-by: Florian Forster <octo at huhu.verplant.org>

commit 9925e12948defd5b09166aacc807fab2e9dc93e7
Author: Sebastian Harl <sh at tokkee.org>
Date:   Tue Aug 26 16:12:01 2008 +0200

    collectd.conf(5): Documented the postgresql {Min,Max}PGVersion options.
    
    Signed-off-by: Sebastian Harl <sh at tokkee.org>
    Signed-off-by: Florian Forster <octo at huhu.verplant.org>

commit 9f67af1913d2d3539cb892890fd121f8a16d46a9
Author: Sebastian Harl <sh at tokkee.org>
Date:   Tue Aug 26 16:11:26 2008 +0200

    postgresql_default.conf: Split "queries" query into two versions.
    
    The "n_tup_hot_upd" column has been added in 8.3. The two versions of the
    "queries" query now take that into account by defining different SQL queries
    for versions up to 8.2.99 and versions starting with 8.3.
    
    Signed-off-by: Sebastian Harl <sh at tokkee.org>
    Signed-off-by: Florian Forster <octo at huhu.verplant.org>

commit 9def8cfa83fb819fa23a95cfc5a1e35d697fbd6f
Author: Sebastian Harl <sh at tokkee.org>
Date:   Tue Aug 26 16:10:20 2008 +0200

    postgresql_default.conf: Limit query "table_states" to versions >= 8.3.
    
    The "n_live_tup" and "n_dead_tup" columns of the pg_stat_tables view were not
    available before that version.
    
    Signed-off-by: Sebastian Harl <sh at tokkee.org>
    Signed-off-by: Florian Forster <octo at huhu.verplant.org>

commit f8398bc8a8565acf565016270129b51e87a6b05b
Author: Sebastian Harl <sh at tokkee.org>
Date:   Tue Aug 26 16:09:27 2008 +0200

    postgresql plugin: Added {Min,Max}PGVersion configuration options.
    
    Those options may be used to specify the minimum and maximum version of
    PostgreSQL which is required for some query. This may be used to automatically
    configure the plugin for a heterogeneous environment while using the same
    configuration file on all hosts.
    
    Signed-off-by: Sebastian Harl <sh at tokkee.org>
    Signed-off-by: Florian Forster <octo at huhu.verplant.org>

commit cb23b65c5b01cc632584af2f17a1cc338c85ca28
Author: Sebastian Harl <sh at tokkee.org>
Date:   Tue Aug 26 16:07:48 2008 +0200

    postgresql plugin: Renamed config_set() to config_set_s().
    
    The latter name includes the type (string) of the data being handled and,
    thus, allows functions handling other types to be named in a consistent way.
    
    Signed-off-by: Sebastian Harl <sh at tokkee.org>
    Signed-off-by: Florian Forster <octo at huhu.verplant.org>

commit bb6d6228d77817049cb00da6edd389c5bcaef4ea
Author: Sebastian Harl <sh at tokkee.org>
Date:   Tue Aug 26 15:49:37 2008 +0200

    ChangeLog: Added the changes to the perl plugin.
    
    Signed-off-by: Sebastian Harl <sh at tokkee.org>
    Signed-off-by: Florian Forster <octo at huhu.verplant.org>

commit c650e9e7309b04f5819d6074e6c4852d96b8ff9c
Author: Sebastian Harl <sh at tokkee.org>
Date:   Tue Aug 26 12:37:44 2008 +0200

    collectd-perl(5): Document the <Plugin> configuration block.
    
    Signed-off-by: Sebastian Harl <sh at tokkee.org>
    Signed-off-by: Florian Forster <octo at huhu.verplant.org>

commit eade01b4c26d1bed1c1d2b5b86c1807334dcd197
Author: Sebastian Harl <sh at tokkee.org>
Date:   Tue Aug 26 11:56:31 2008 +0200

    perl plugin: Added "<Plugin>" configuration block.
    
    Similar to the global "<Plugin>" blocks this may be used to configure Perl
    plugins. The oconfig_item_t object is converted to a Perl hash which will be
    passed on to the registered configuration callback. A configuration
    callback is registered using the TYPE_CONFIG identifier.
    
    The Perl representation of the oconfig_item_t object looks like this:
    
      {
          'key'      => '<key>',
          'values'   => [ '<val1>', '<val2>', ... ],
          'children' => [ { ... }, { ... }, ... ]
      }
    
    Signed-off-by: Sebastian Harl <sh at tokkee.org>
    Signed-off-by: Florian Forster <octo at huhu.verplant.org>

commit fff2b3d4629a871297984219cf5d9c5437a0fd89
Author: Florian Forster <octo at huhu.verplant.org>
Date:   Tue Aug 26 18:56:24 2008 +0200

    configure.in: Add the filecount plugin to the status output.

commit 4377f740c442ce752f0dc9a17bbb36114d071e74
Author: Sebastian Harl <sh at tokkee.org>
Date:   Tue Aug 26 11:51:54 2008 +0200

    configure.in, filecount.c: Removed all left-over occurrences of "qmail".
    
    Signed-off-by: Sebastian Harl <sh at tokkee.org>
    Signed-off-by: Florian Forster <octo at huhu.verplant.org>




More information about the collectd-changes mailing list