package/collectd: add 'infiniband' option

The infiniband plugin is new since 5.12.0 and enabled by default in
collectd.

Add an option in Buildroot, disabled by default.

Signed-off-by: Thomas De Schampheleire <thomas.de_schampheleire@nokia.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
This commit is contained in:
Thomas De Schampheleire 2021-02-16 14:54:28 +01:00 committed by Thomas Petazzoni
parent e792b4d22d
commit 6b41a0e91e
2 changed files with 6 additions and 0 deletions

View File

@ -285,6 +285,11 @@ config BR2_PACKAGE_COLLECTD_HUGEPAGES
help
Reports the number of used and free hugepages on Linux.
config BR2_PACKAGE_COLLECTD_INFINIBAND
bool "infiniband"
help
Attributes and counters for each port on each IB device.
config BR2_PACKAGE_COLLECTD_INTERFACE
bool "interface"
help

View File

@ -83,6 +83,7 @@ COLLECTD_CONF_OPTS += \
$(if $(BR2_PACKAGE_COLLECTD_GRPC),--enable-grpc,--disable-grpc) \
$(if $(BR2_PACKAGE_COLLECTD_HASHED),--enable-match_hashed,--disable-match_hashed) \
$(if $(BR2_PACKAGE_COLLECTD_HUGEPAGES),--enable-hugepages,--disable-hugepages) \
$(if $(BR2_PACKAGE_COLLECTD_INFINIBAND),--enable-infiniband,--disable-infiniband) \
$(if $(BR2_PACKAGE_COLLECTD_INTERFACE),--enable-interface,--disable-interface) \
$(if $(BR2_PACKAGE_COLLECTD_IPC),--enable-ipc,--disable-ipc) \
$(if $(BR2_PACKAGE_COLLECTD_IPTABLES),--enable-iptables,--disable-iptables) \