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

Florian Forster octo at verplant.org
Wed Oct 5 09:14:28 CEST 2016


 CONTRIBUTING.md              |    6 +-
 README                       |  226 +++++++----------------------------------
 contrib/redhat/collectd.spec |   13 +++
 docs/BUILD.dpdkstat.md       |  230 ++++++++++++++++++++++++++++++++++++++++++
 docs/BUILD.java.md           |   50 +++++++++
 src/collectd.conf.in         |    3 +-
 src/collectd.conf.pod        |   20 +++-
 src/daemon/plugin.c          |   22 ++--
 src/daemon/plugin.h          |   12 +--
 src/daemon/utils_cache.h     |    6 +-
 src/grpc.cc                  |    2 +-
 src/memcached.c              |  108 ++++++++++++--------
 src/write_graphite.c         |   32 ++++--
 src/write_http.c             |    7 +-
 14 files changed, 463 insertions(+), 274 deletions(-)

New commits:
commit 319e18c6784eb653990ac277ef45bf482d29fdc5
Merge: 91b4a8d 01a1f95
Author: Florian Forster <octo at collectd.org>
Date:   Wed Oct 5 08:52:56 2016 +0200

    Merge remote-tracking branch 'github/pr/1973'

commit 91b4a8df9e772fb40471dc7e48656464f778894e
Merge: 04f27bd cf27e20
Author: Florian Forster <octo at collectd.org>
Date:   Wed Oct 5 08:51:50 2016 +0200

    Merge branch 'pr/1975'

commit cf27e2041102bb17ed5a3c495a50f4207d29ca1c
Author: Florian Forster <octo at collectd.org>
Date:   Wed Oct 5 08:51:29 2016 +0200

    memcached plugin: Clarify documentation and a comment.

commit 233d5c822ab04da98221b9ff762e8557ace026aa
Author: Pavel Rochnyack <pavel2000 at ngs.ru>
Date:   Wed Oct 5 00:54:34 2016 +0600

    memcached: Added Address option

commit 01a1f951d80bc7cc143f92ed7e2a2cbe05ebe902
Author: Florian Forster <octo at collectd.org>
Date:   Tue Oct 4 20:56:05 2016 +0200

    CONTRIBUTING.md: Note that plugins must be added to README.

commit 2bc134037ebdeea69749c5d5ba6fd85726860e35
Author: Florian Forster <octo at collectd.org>
Date:   Tue Oct 4 16:39:57 2016 +0200

    README: Move mqtt and grpc to the right section.

commit f28e7b7a677dd52449fda84a19c010a5a2b6bace
Author: Florian Forster <octo at collectd.org>
Date:   Tue Oct 4 10:42:14 2016 +0200

    README: Improve build requirements.

commit f008423ad77e5b3f896e6a20154ef870d60acdc8
Author: Florian Forster <octo at collectd.org>
Date:   Tue Oct 4 10:29:51 2016 +0200

    docs/BUILD.java.md: Move java build instructions out of README.

commit f533bcdb2ea36aafaf46835616a476e37dc6f6cf
Author: Florian Forster <octo at collectd.org>
Date:   Tue Oct 4 10:19:48 2016 +0200

    docs/BUILD.dpdkstat.md: Move dpdkstat build instructions out of README.

commit 04f27bdd38966e0b826b283d8790ce31fb467929
Author: Marc Fournier <marc.fournier at camptocamp.com>
Date:   Tue Oct 4 20:53:00 2016 +0200

    collectd.spec: the dpdk is actually called dpdkstat...

commit 6a78e221ef7f3df40417dcd2e51285300bef55b9
Author: Marc Fournier <marc.fournier at camptocamp.com>
Date:   Mon Oct 3 22:16:23 2016 +0200

    collectd.spec: add dpdk plugin

commit ed946a10401f7b46d6e52fabf2a96568a71cb10a
Author: Florian Forster <octo at collectd.org>
Date:   Fri Sep 30 16:01:54 2016 +0200

    grpc plugin: Fix compile error.
    
    Weirdly, this only surfaces when building with CFLAGS="-O0 -g".
    
    In file included from ./daemon/common.h:33:0,
                     from grpc.cc:44:
    grpc.cc: In member function 'virtual grpc::Status CollectdImpl::PutValues(grpc::ServerContext*, grpc::ServerReader<collectd::PutValuesRequest>*, collectd::PutValuesResponse*)':
    ./daemon/plugin.h:113:56: sorry, unimplemented: non-trivial designated initializers not supported
     #define VALUE_LIST_INIT { .values = NULL, .meta = NULL }
                                                            ^
    grpc.cc:294:22: note: in expansion of macro 'VALUE_LIST_INIT'
        value_list_t vl = VALUE_LIST_INIT;
                          ^

commit 135ff51aea84dd8131d38e0cf0d3b18853cdb935
Author: Florian Forster <octo at collectd.org>
Date:   Wed Sep 28 23:12:43 2016 +0200

    CONTRIBUTING.md: Fix typos.

commit f2f7049e8faff8043b12d7c7548d9398d3b3ada4
Merge: 93a92aa 69d058a
Author: Florian Forster <octo at collectd.org>
Date:   Wed Sep 28 22:13:08 2016 +0200

    Merge branch 'collectd-5.6'

commit 93a92aa8b9e44fdaa6c3493639709e7fb1fa3c4c
Author: Florian Forster <octo at collectd.org>
Date:   Wed Sep 28 13:54:00 2016 +0200

    src/daemon/utils_cache.h: Improve documentation for uc_iterator_get_next().

commit 69d058a6ce8557e24b604b8efb09136e02054bd0
Author: Florian Forster <octo at collectd.org>
Date:   Wed Sep 28 21:27:54 2016 +0200

    src/daemon/plugin.[ch]: Make the user_data_t* const.
    
    That is, user_data_t* passed to register_* functions. The actual callbacks
    are still getting a user_data_t* since they, in theory, would be able to
    modify the pointer stored in .data.
    
    Issue: #1954

commit 38b9a40f8d93809723254db9278ed9a9febb25e2
Author: Florian Forster <octo at collectd.org>
Date:   Wed Sep 28 21:23:49 2016 +0200

    src/daemons/plugin.c: Don't modify user_data_t* in plugin_register_flush().
    
    Fixes: #1954

commit cc9019ab5b8065c03524a5fd393afbe38125aaee
Author: Florian Forster <octo at collectd.org>
Date:   Wed Sep 28 20:58:04 2016 +0200

    Revert "write_graphite: remove #ifndefs"
    
    This reverts commit de80d27fe7023c2e377674b4cc341e539388b98e.
    
    Fixes: #1953

commit 64d7901606e27ab6de67164534494ca7b0055622
Author: Florian Forster <octo at collectd.org>
Date:   Wed Sep 28 17:53:34 2016 +0200

    write_http plugin: Don't register a flush callback unconditionally.
    
    Fixes: #1955




More information about the collectd-changes mailing list