package/collectd: add rrdcached support

The rrdcached plugin has status "supported":
https://collectd.org/wiki/index.php/Plugin:RRDCacheD

Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
2023.02.x
Bernd Kuhls 2022-12-27 22:36:31 +01:00 committed by Thomas Petazzoni
parent 90a543de88
commit d77db2df74
2 changed files with 11 additions and 1 deletions

View File

@ -724,6 +724,15 @@ config BR2_PACKAGE_COLLECTD_RRDTOOL
comment "rrdtool support needs a toolchain w/ wchar"
depends on !BR2_USE_WCHAR
if BR2_PACKAGE_COLLECTD_RRDTOOL
config BR2_PACKAGE_COLLECTD_RRDCACHED
bool "rrdcached"
help
Use the RRDtool caching daemon.
endif
config BR2_PACKAGE_COLLECTD_RIEMANN
bool "riemann"
# riemann-c-client -> protobuf-c

View File

@ -21,7 +21,7 @@ COLLECTD_PLUGINS_DISABLE = \
gmond hddtemp intel_rdt java lpar \
madwifi mbmon mic multimeter netapp notify_desktop numa \
oracle perl pf pinba powerdns python routeros \
rrdcached sigrok tape target_v5upgrade teamspeak2 ted \
sigrok tape target_v5upgrade teamspeak2 ted \
tokyotyrant turbostat uuid varnish vserver write_kafka \
write_mongodb xencpu xmms zfs_arc zone
@ -134,6 +134,7 @@ COLLECTD_CONF_OPTS += \
$(if $(BR2_PACKAGE_COLLECTD_REGEX),--enable-match_regex,--disable-match-regex) \
$(if $(BR2_PACKAGE_COLLECTD_REPLACE),--enable-target_replace,--disable-target_replace) \
$(if $(BR2_PACKAGE_COLLECTD_RIEMANN),--enable-write_riemann,--disable-write_riemann) \
$(if $(BR2_PACKAGE_COLLECTD_RRDCACHED),--enable-rrdcached,--disable-rrdcached) \
$(if $(BR2_PACKAGE_COLLECTD_RRDTOOL),--enable-rrdtool,--disable-rrdtool) \
$(if $(BR2_PACKAGE_COLLECTD_SCALE),--enable-target_scale,--disable-target_scale) \
$(if $(BR2_PACKAGE_COLLECTD_SENSORS),--enable-sensors,--disable-sensors) \