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

Florian Forster octo at verplant.org
Sun Sep 6 12:19:08 CEST 2009


 configure.in                                       |    2 +-
 contrib/collection.cgi                             |    6 +-
 contrib/collection3/bin/index.cgi                  |    4 +-
 contrib/collection3/etc/collection.conf            |   12 +
 contrib/collection3/lib/Collectd/Graph/Common.pm   |   11 +-
 contrib/collection3/lib/Collectd/Graph/Type.pm     |   22 +-
 .../lib/Collectd/Graph/Type/GenericStacked.pm      |   66 +-
 .../lib/Collectd/Graph/Type/JavaMemory.pm          |  158 ++
 .../collection3/lib/Collectd/Graph/TypeLoader.pm   |    3 +-
 contrib/cussh.pl                                   |   50 +-
 src/Makefile.am                                    |    6 +-
 src/df.c                                           |   32 +-
 src/iptables.c                                     |    4 +-
 src/libiptc/Makefile.am                            |   15 -
 src/libiptc/README.collectd                        |   25 -
 src/libiptc/ipt_kernel_headers.h                   |   45 -
 src/libiptc/libip4tc.c                             |  516 ----
 src/libiptc/libip6tc.c                             |  455 ----
 src/libiptc/libip6tc.h                             |  175 --
 src/libiptc/libiptc.c                              | 2708 --------------------
 src/libiptc/libiptc.h                              |  187 --
 src/libiptc/libxtc.h                               |   53 -
 src/libiptc/linux_list.h                           |  741 ------
 src/libiptc/xtables.h                              |  239 --
 src/owniptc/Makefile.am                            |   15 +
 src/owniptc/README.collectd                        |   25 +
 src/owniptc/ipt_kernel_headers.h                   |   45 +
 src/owniptc/libip4tc.c                             |  516 ++++
 src/owniptc/libip6tc.c                             |  455 ++++
 src/owniptc/libip6tc.h                             |  175 ++
 src/owniptc/libiptc.c                              | 2708 ++++++++++++++++++++
 src/owniptc/libiptc.h                              |  187 ++
 src/owniptc/libxtc.h                               |   53 +
 src/owniptc/linux_list.h                           |  741 ++++++
 src/owniptc/xtables.h                              |  239 ++
 src/powerdns.c                                     |   29 +-
 36 files changed, 5500 insertions(+), 5223 deletions(-)

New commits:
commit 9d15d1058b93acb7be041934acfe76548539041a
Merge: cce535f9fbb96dce74e94c5077bae08b1be8b2c4 2438b95b7f7930902d021aa749308ea8ae5652ca
Author: Florian Forster <octo at leeloo.lan.home.verplant.org>
Date:   Sun Sep 6 12:15:06 2009 +0200

    Merge branch 'collectd-4.6' into collectd-4.7
    
    Conflicts:
    	configure.in
    	src/iptables.c

commit 2438b95b7f7930902d021aa749308ea8ae5652ca
Author: Florian Forster <octo at leeloo.lan.home.verplant.org>
Date:   Sun Sep 6 12:06:12 2009 +0200

    src/owniptc: Moved the “src/libiptc” directory to “src/owniptc” to avoid build issues.
    
    If there is a system-wide version of this library available, the “-I.”
    argument (added automatically by automake :() will lead to the shipped
    header files being used. Later, the binary is linked with the
    system-wide library, which leads to severe problems when API/ABI
    incompatibilities have been introduced in other versions.

commit eb1d4382c6c29ce598052daaf13ef6ff6672430f
Author: Anthony Dewhurst <dewhurst at gmail.com>
Date:   Sun Aug 30 22:32:55 2009 +0100

    contrib/collection3: Allow numbers in type names.
    
    When converting the on-disk type name to the displayed name,
    do not strip numbers out.
    
    Signed-off-by: Florian Forster <octo at leeloo.lan.home.verplant.org>

commit 6cd3f6a3bcec1298eeb79ce531858919388a05e5
Author: Florian Forster <octo at leeloo.lan.home.verplant.org>
Date:   Mon Aug 31 17:16:40 2009 +0200

    contrib/collection3: GenericStacked: Use stacking by default.

commit 03f24261247baff4ecf72373f6173ae82395f199
Author: Anthony Dewhurst <dewhurst at gmail.com>
Date:   Sun Aug 2 23:25:45 2009 +0100

    contrib/collection3: Option to turn stacking off in GenericStacking
    
    CDEFs are not stacked and AREAs are not added when "Stacking" is set to off.
    
    Signed-off-by: Florian Forster <octo at leeloo.lan.home.verplant.org>

commit a61283c0682513a849cdb57ca5346188785a2a28
Author: Brad Fritz <brad at fewerhassles.com>
Date:   Mon Aug 24 13:25:37 2009 -0400

    contrib/collection.cgi: Fix spam_check graph for email plugin.
    
    Corrects DS name to fix email plugin's spam_check graph.
    
    Signed-off-by: Brad Fritz <brad at fewerhassles.com>
    Signed-off-by: Florian Forster <octo at huhu.verplant.org>

commit 66d122095cac47cf22199fadc0b49ee4087e4169
Author: Florian Forster <octo at huhu.verplant.org>
Date:   Wed Aug 26 13:47:47 2009 +0200

    collection3: Add a module for the “java_memory” type.

commit 571806f201f21a10f6f700a4adf57480fafe5d54
Author: Florian Forster <octo at huhu.verplant.org>
Date:   Wed Aug 26 13:46:36 2009 +0200

    collection3: Add the possibility to scale generic graphs.

commit e391ecd14e8c0f153d46e11213e0effc662ff3b8
Author: Florian Forster <octo at noris.net>
Date:   Wed Aug 26 11:31:24 2009 +0200

    contrib/cussh.pl: Add synopsis for specific commands.
    
    You can now do
      HELP FLUSH
    to get information about the FLUSH command.

commit 522aa06512b8c20dfda353ef3a74defe5ec66e4a
Author: Florian Forster <octo at noris.net>
Date:   Wed Aug 26 10:34:08 2009 +0200

    contrib/cussh.pl: Fix a typo in the `FLUSH' command.

commit 1b0c4dd4a9426da7d0c8eecffc55c42551ba3080
Author: Aman Gupta <aman at tmm1.net>
Date:   Sat Aug 22 14:07:26 2009 +0200

    contrib/collection3: Common.pm: Sort identifiers by filename.

commit 98ee1a638880f794c89ca9f9aaf9aa31a68ce100
Author: Florian Forster <octo at huhu.verplant.org>
Date:   Thu Aug 20 14:10:37 2009 +0200

    df plugin: Check ignorelists before stat'ing the filesystem.
    
     → See also: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=542859

commit 23cbc33ec79a98119b284c2db6f5a228a97cac3b
Author: Luke Heberling <collectd at c-ware.com>
Date:   Thu Aug 20 14:10:37 2009 +0200

    powerdns plugin: Fix handling of the “LocalSocket” config option.
    
     → See also: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=535787

commit 7595db879edf643aff84a77791bf50d757554125
Author: Luke Heberling <collectd at c-ware.com>
Date:   Thu Aug 20 14:08:53 2009 +0200

    powerdns plugin: Set a timeout for the datagram socket.
    
     → See also: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=535787




More information about the collectd-changes mailing list