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

Florian Forster octo at verplant.org
Wed May 27 17:15:32 CEST 2015


 ChangeLog                        |  279 ++++++++++++++++++++++++++++++++++++++
 bindings/java/Makefile.am        |    7 +-
 contrib/redhat/collectd.spec     |   22 +--
 contrib/wiki2changelog.pl        |   75 ++++++++++
 src/Makefile.am                  |   76 ++++-------
 src/daemon/Makefile.am           |   27 +++-
 src/daemon/collectd.h            |    4 +
 src/daemon/common.c              |    9 +-
 src/daemon/common_test.c         |  246 +++++++++++++++++++++++++++++++++
 src/daemon/filter_chain.c        |    4 +
 src/daemon/plugin.c              |   55 ++++++++
 src/daemon/plugin.h              |   11 ++
 src/daemon/plugin_mock.c         |   41 ++++++
 src/daemon/utils_avltree_test.c  |   82 +++++++++++
 src/daemon/utils_cache_mock.c    |   32 +++++
 src/daemon/utils_heap_test.c     |   85 ++++++++++++
 src/daemon/utils_time_mock.c     |   33 +++++
 src/postgresql.c                 |    2 +-
 src/rrdtool.c                    |    4 +-
 src/target_notification.c        |    4 +-
 src/testing.h                    |   67 +++++++++
 src/tests/common_test.c          |  246 ---------------------------------
 src/tests/macros.h               |   67 ---------
 src/tests/mock/plugin.c          |   41 ------
 src/tests/mock/utils_cache.c     |   32 -----
 src/tests/mock/utils_time.c      |   33 -----
 src/tests/test_common.c          |  246 ---------------------------------
 src/tests/test_utils_avltree.c   |   82 -----------
 src/tests/test_utils_heap.c      |   85 ------------
 src/tests/test_utils_mount.c     |  101 --------------
 src/tests/test_utils_vl_lookup.c |  249 ----------------------------------
 src/utils_format_graphite.c      |    2 +-
 src/utils_format_json.c          |    4 +-
 src/utils_format_json.h          |    4 +
 src/utils_mount.c                |   12 +-
 src/utils_mount_test.c           |  101 ++++++++++++++
 src/utils_vl_lookup_test.c       |  249 ++++++++++++++++++++++++++++++++++
 src/write_redis.c                |   18 ++-
 src/write_sensu.c                |    6 +-
 src/write_tsdb.c                 |    4 +-
 version-gen.sh                   |    2 +-
 41 files changed, 1467 insertions(+), 1282 deletions(-)

New commits:
commit ffc3836c22daa43aec1e28dc97c92f8e60b1b5ee
Author: Marc Fournier <marc.fournier at camptocamp.com>
Date:   Wed May 27 09:41:36 2015 +0200

    update changelog + bump release dates

commit a041631739087cbd002293652ee23bed9ce25478
Author: Florian Forster <octo at collectd.org>
Date:   Tue May 26 21:43:10 2015 +0200

    Build system: Fix linking with libheap.la and depend on testing.h.
    
    collectd-tg tried to link with libheap.a (instead of ….la), which
    doesn't exist. testing.h was not mentioned by any target, leading to it
    being missing form the tarballs.

commit a644c803e14a19015acfbf5368e336c359b250e3
Author: Florian Forster <octo at collectd.org>
Date:   Tue May 26 08:52:39 2015 +0200

    Build system: Build tested units as libraries.
    
    This simplifies the build rules for the tests, aka. check programs.
    
    * test_foo.c have been renamed to foo_test.c.
    * foo_test.c now reside right next to foo.c and foo.h.
    * Build and refer to .la files, rather than depending on .c files from
      other directories.
    
    Fixes: #1042

commit 68923fc80953be8b3b7e777e8cedc605ae41ef4f
Author: Marc Fournier <marc.fournier at camptocamp.com>
Date:   Tue May 26 15:41:47 2015 +0200

    Filter chains helper: minor cleanups
    
    This is a couple of trivial followups to 809a8973.

commit 13e2b6e5a5ff8dbb20e6e5e06058b3372d139b94
Author: root <root at r1lead.ice.americas.sgi.com>
Date:   Wed May 20 14:17:10 2015 -0500

    write_redis: Replaced method for checking for a NULL value for the redis connection

commit 92ba603ab4aea6186600757fcbcbf4781cc86dcc
Author: root <root at sub.americas.sgi.com>
Date:   Wed May 20 10:46:26 2015 -0500

    write_redis: Log error message from redis command failures

commit dee232ec86cb375f00096117475a6f21cf56e015
Author: root <root at sub.americas.sgi.com>
Date:   Wed May 20 09:38:23 2015 -0500

    write_redis: improve checking the redis connection

commit 809a89739bd92a5432deb6230a68dd6e6bbb72b3
Author: Wilfried Goesgens <dothebart at citadel.org>
Date:   Sat May 23 15:44:24 2015 +0200

    Filterchain: if we don't find a writer, output the available writers to syslog.

commit 2cbd37356b2a3d3890b335d01e0d563269b448be
Author: Florian Forster <octo at collectd.org>
Date:   Sat May 23 11:01:19 2015 +0200

    bindings/java/Makefile.am: Add "uninstall-local" target.
    
    Otherwise "make distcheck" will complain about leftover files.

commit 37105d4bfe1ad356746cf7df19bc0323f227987d
Author: Florian Forster <octo at collectd.org>
Date:   Sat May 23 11:00:38 2015 +0200

    bindings/java/Makefile.am: Use $(srcdir) when specifying dependencies.
    
    This fixes out-of-tree builds, like "make distcheck" does.

commit 8ce69938a360fc2d83b1a42d994964d574f5780f
Author: Florian Forster <octo at collectd.org>
Date:   Fri May 22 13:32:00 2015 +0200

    ChangeLog: Update date to 2015-05-22.

commit 599e3edb4905c6be61c0fc66a62be1d69a4833b3
Author: Florian Forster <octo at collectd.org>
Date:   Fri May 22 11:48:17 2015 +0200

    write_sensu, write_tsdb plugins: Use GAUGE_FORMAT.
    
    Issue #1039

commit 0beb06563c5681975fd4f743c547e15f4facb29f
Merge: 47e8dc0 35dfbf6
Author: Florian Forster <octo at collectd.org>
Date:   Fri May 22 11:33:27 2015 +0200

    Merge branch 'collectd-5.4' into collectd-5.5
    
    Conflicts:
    	src/write_redis.c

commit 35dfbf6616169e6f0fddb2edd0ccb53b6a753da7
Author: Florian Forster <octo at collectd.org>
Date:   Fri May 22 11:29:12 2015 +0200

    write_redis: Fix timestamp sent to Redis.

commit d3db12b73a1c3c17a2dfc0ba96ec99490088c957
Author: Florian Forster <octo at collectd.org>
Date:   Fri May 22 11:25:01 2015 +0200

    Various plugins: Use the global GAUGE_FORMAT.
    
    This fixes the postgresql, rrdtool, target_notification, write_graphite and
    write_redis plugins to use the globally defined format for gauges.
    
    Issue #1039

commit b6fbfb1b864be53e71d755fba59d633f5c30da7e
Author: Florian Forster <octo at collectd.org>
Date:   Fri May 22 11:11:27 2015 +0200

    src/collectd.h: Define GAUGE_FORMAT.
    
    This format is also used in format_values(), so exported gauges follow a common
    format.
    
    See also issue #1039

commit cdc0d1f300c1c6870a29a20a3245c746674f5159
Author: Florian Forster <octo at collectd.org>
Date:   Fri May 22 10:25:35 2015 +0200

    src/utils_format_json.[ch]: Export gauges with 15 decimal places of precision.
    
    Fixes: #1039

commit 47e8dc00c85a8ffaf051d922112270910b8665b8
Author: Florian Forster <octo at collectd.org>
Date:   Thu May 21 13:59:49 2015 +0200

    ChangeLog: Import changes from the wiki.

commit 8353e30b11f87315b0072c2a833ede35fedf82ec
Author: Marc Fournier <marc.fournier at camptocamp.com>
Date:   Wed May 20 23:37:53 2015 +0200

    RPM specfile: fix changelog formatting

commit 3fcefbe74bda9a609406498e78ab12649a0948ae
Author: Marc Fournier <marc.fournier at camptocamp.com>
Date:   Wed May 20 22:40:52 2015 +0200

    RPM specfile: also bump release number

commit f2daf5deea1d50dbb834cffa0c8106b5456c9d82
Author: Marc Fournier <marc.fournier at camptocamp.com>
Date:   Wed May 20 22:35:42 2015 +0200

    RPM specfile: update changelog for 5.5

commit 5c454c02b7239771f2a0213bab5cf76e0ba5984b
Author: Florian Forster <octo at collectd.org>
Date:   Wed May 20 22:25:28 2015 +0200

    contrib/wiki2changelog.pl: Add script converting from wiki to ChangeLog.

commit ee4c6e38c068f22dee05fb6319930093604d78a5
Author: Florian Forster <octo at collectd.org>
Date:   Wed May 20 22:18:05 2015 +0200

    ChangeLog: Change text width to 80 characters.

commit cf9cb3367b4b207e15f1181e1d7ae062138be09e
Author: Florian Forster <octo at collectd.org>
Date:   Wed May 20 22:13:38 2015 +0200

    Bump version to 5.5.0; Update ChangeLog.




More information about the collectd-changes mailing list