collectd: add chrony plugin support

Add explicit support for the new chrony dependency-less plugin.

Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
This commit is contained in:
Gustavo Zacarias 2016-12-21 22:59:13 -03:00 committed by Peter Korsgaard
parent c7a2be68fe
commit 81456f1e92
2 changed files with 6 additions and 0 deletions

View File

@ -127,6 +127,11 @@ config BR2_PACKAGE_COLLECTD_CEPH
help
Statistics from the Ceph distributed storage system.
config BR2_PACKAGE_COLLECTD_CHRONY
bool "chrony"
help
Collects NTP data from the chrony NTP server.
config BR2_PACKAGE_COLLECTD_CGROUPS
bool "cgroups"
help

View File

@ -35,6 +35,7 @@ COLLECTD_CONF_OPTS += \
$(if $(BR2_PACKAGE_COLLECTD_BATTERY),--enable-battery,--disable-battery) \
$(if $(BR2_PACKAGE_COLLECTD_BIND),--enable-bind,--disable-bind) \
$(if $(BR2_PACKAGE_COLLECTD_CEPH),--enable-ceph,--disable-ceph) \
$(if $(BR2_PACKAGE_COLLECTD_CHRONY),--enable-chrony,--disable-chrony) \
$(if $(BR2_PACKAGE_COLLECTD_CGROUPS),--enable-cgroups,--disable-cgroups) \
$(if $(BR2_PACKAGE_COLLECTD_CONNTRACK),--enable-conntrack,--disable-conntrack) \
$(if $(BR2_PACKAGE_COLLECTD_CONTEXTSWITCH),--enable-contextswitch,--disable-contextswitch) \