[collectd-changes] collectd, the system statistics collection daemon: Changes to 'collectd-5.5'
Florian Forster
octo at verplant.org
Tue May 26 22:59:33 CEST 2015
bindings/java/Makefile.am | 7 +-
src/Makefile.am | 76 ++++--------
src/daemon/Makefile.am | 27 ++++-
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/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_mount.c | 12 +-
src/utils_mount_test.c | 101 ++++++++++++++++
src/utils_vl_lookup_test.c | 249 ++++++++++++++++++++++++++++++++++++++
src/write_redis.c | 16 ++-
27 files changed, 1075 insertions(+), 1251 deletions(-)
New commits:
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.
More information about the collectd-changes
mailing list