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

Florian Forster octo at verplant.org
Tue Aug 10 09:36:10 CEST 2010


 src/Makefile.am                |   16 +-
 src/collectd-flush.c           |  176 ------------
 src/collectd-flush.pod         |   71 -----
 src/collectdctl.c              |  582 ++++++++++++++++++++++++++++++++++++++++
 src/collectdctl.pod            |  160 +++++++++++
 src/libcollectdclient/client.c |    2 +-
 src/libcollectdclient/client.h |    2 +-
 7 files changed, 753 insertions(+), 256 deletions(-)

New commits:
commit a92f88f0d5e0b0f6b80de5c569cd3d20a5572b95
Author: Florian Forster <octo at huhu.verplant.org>
Date:   Tue Aug 10 09:35:00 2010 +0200

    collectdctl: Explicitly cast "long" to "int". This might be a problem on 32bit architectures.

commit 71ddf90efc69ccf8fef77a9a2ac5e4acf35a69bf
Author: Sebastian Harl <sh at tokkee.org>
Date:   Mon Aug 9 22:04:54 2010 +0200

    collectdctl: Added support for ‘U’ (undef) values in ‘putval’.

commit 3b3051fbd83550316eb4b4535c4d2f764e855418
Author: Sebastian Harl <sh at tokkee.org>
Date:   Mon Aug 9 22:03:02 2010 +0200

    libcollectdclient: Fixed handling of ‘U’ (undef) in ‘PUTVAL’.

commit 4da9a97a7024960ef8210e10b76204ef2fdaf979
Author: Sebastian Harl <sh at tokkee.org>
Date:   Mon Aug 9 21:57:05 2010 +0200

    collectdctl: Improved error reporting.

commit 666394e4a4fe8efe6a98266b9dbac32e30064f45
Author: Sebastian Harl <sh at tokkee.org>
Date:   Mon Aug 9 21:54:09 2010 +0200

    collectdctl: Added support for the ‘putval’ command.

commit d004b7065d9f89486aa7f955c3ac340fec4b5055
Author: Sebastian Harl <sh at tokkee.org>
Date:   Mon Aug 9 21:29:07 2010 +0200

    libcollectdclient: Added missing element to LCC_VALUE_LIST_INIT.

commit 58744510fe0d5d67150779bfa93609fa94eaa2b7
Author: Sebastian Harl <sh at tokkee.org>
Date:   Mon Aug 9 17:39:24 2010 +0200

    collectdctl: Moved examples section from help output to manpage.

commit d0d5d5fa42cd77042d4c3077bb67cfeb8c9cd701
Author: Sebastian Harl <sh at tokkee.org>
Date:   Mon Aug 9 17:26:11 2010 +0200

    collectdctl: ‘flush’ now supports multiple plugins/identifiers.
    
    … just like the ‘unixsock’ plugin does.

commit 00f1c765cad57d9ccd5263421611b56dfa8e94c4
Author: Sebastian Harl <sh at tokkee.org>
Date:   Mon Aug 9 00:10:22 2010 +0200

    collectdctl(1): Updated the manpage according to the latest changes.

commit 5b4655df8b9d8e60d0502b0c6ecdcb05e99f7fc7
Author: Sebastian Harl <sh at tokkee.org>
Date:   Sun Aug 8 23:27:16 2010 +0200

    collectdctl: Improved error reporting.

commit 1252d60cdbd86328ecb815e978dbfa380c29b385
Author: Sebastian Harl <sh at tokkee.org>
Date:   Sun Aug 8 23:23:40 2010 +0200

    collectdctl: Added ‘listval’ command.

commit ef3517dc3971eaf3986331b532f201e52dea7817
Author: Sebastian Harl <sh at tokkee.org>
Date:   Sun Aug 8 22:22:11 2010 +0200

    Renamed ‘collectd-flush’ to ‘collectdctl’ (collectd control interface).

commit bbe79aeced66b646bb84aa38f7458e720ad18e1c
Author: Sebastian Harl <sh at tokkee.org>
Date:   Sun Aug 8 22:18:06 2010 +0200

    collectd-flush: Added ‘getval’ to the help output.

commit dfdde4f67574cc6c02ca4bb26a1b54b3b7250fcd
Author: Sebastian Harl <sh at tokkee.org>
Date:   Sun Aug 8 22:15:15 2010 +0200

    collectd-flush: Added support for the ‘getval’ command.

commit 677cdefc79b8317c0013521f7f9e3eff7af7c282
Author: Sebastian Harl <sh at tokkee.org>
Date:   Sun Aug 8 21:49:11 2010 +0200

    collectd-flush: Moved connection handling out of ‘flush()’.

commit 91c09b4a499872e92c845859b912dcc049fdf712
Author: Sebastian Harl <sh at tokkee.org>
Date:   Sun Aug 8 21:41:45 2010 +0200

    collectd-flush: Switched to a command based syntax.
    
    Basically, the command line now looks similar to the ‘unixsock’ text protocol,
    i.e., a command is specified as first non-option argument followed by any
    options of that command as defined by the protocol.

commit 79f6d0d0005c09481208f9c99328a3754db2aaf7
Author: Sebastian Harl <sh at tokkee.org>
Date:   Sat Aug 7 13:30:42 2010 +0200

    src/Makefile: Build and ship (in the tarball) the collectd-flush manpage.

commit 97367866d955981cfe3adbed9294eb31dc8ba1c4
Author: Sebastian Harl <sh at tokkee.org>
Date:   Sat Aug 7 09:51:08 2010 +0200

    collectd-flush: Include version and author information in usage output.
    
    Just like the other tools.

commit 68215bd134573588e4f99558ff59640470c90faa
Author: Sebastian Harl <sh at tokkee.org>
Date:   Sat Aug 7 09:48:16 2010 +0200

    collectd-flush: Determine default socket from configured localstatedir.

commit 8856d7def89bebef924ef90d04a0baf088744bbc
Author: Sebastian Harl <sh at tokkee.org>
Date:   Sat Aug 7 09:43:33 2010 +0200

    collectd-flush: Do not use ‘getopt_long()’.
    
    This is a GNU extension and, thus, not portable.
    
    Also, pimped the usage output a bit.

commit 552e81eebd54e4dc7a5d290a1ec4be769bef4a24
Author: Sebastian Harl <sh at tokkee.org>
Date:   Sat Aug 7 09:16:50 2010 +0200

    collectd-flush: Simplified ‘usage()’ a bit.




More information about the collectd-changes mailing list