package/collectd: add ipmi support
Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com> Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
This commit is contained in:
parent
6be9913a7e
commit
53ba8d3c0e
@ -312,6 +312,17 @@ config BR2_PACKAGE_COLLECTD_IPC
|
||||
IPC counters: semaphores used, number of allocated segments
|
||||
in shared memory and more.
|
||||
|
||||
config BR2_PACKAGE_COLLECTD_IPMI
|
||||
bool "ipmi"
|
||||
depends on BR2_TOOLCHAIN_HAS_THREADS_NPTL
|
||||
select BR2_PACKAGE_OPENIPMI
|
||||
help
|
||||
Read hardware sensors from servers using the Intelligent
|
||||
Platform Management Interface (IPMI).
|
||||
|
||||
comment "ipmi needs a toolchain w/ NPTL"
|
||||
depends on !BR2_TOOLCHAIN_HAS_THREADS_NPTL
|
||||
|
||||
config BR2_PACKAGE_COLLECTD_IPTABLES
|
||||
bool "iptables"
|
||||
select BR2_PACKAGE_IPTABLES
|
||||
|
@ -18,7 +18,7 @@ COLLECTD_SELINUX_MODULES = apache collectd
|
||||
# These require unmet dependencies, are fringe, pointless or deprecated
|
||||
COLLECTD_PLUGINS_DISABLE = \
|
||||
apple_sensors aquaero ascent barometer dpdkstat email \
|
||||
gmond hddtemp intel_rdt ipmi java lpar \
|
||||
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 \
|
||||
@ -88,6 +88,7 @@ COLLECTD_CONF_OPTS += \
|
||||
$(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_IPMI),--enable-ipmi,--disable-ipmi) \
|
||||
$(if $(BR2_PACKAGE_COLLECTD_IPTABLES),--enable-iptables,--disable-iptables) \
|
||||
$(if $(BR2_PACKAGE_COLLECTD_IPVS),--enable-ipvs,--disable-ipvs) \
|
||||
$(if $(BR2_PACKAGE_COLLECTD_IRQ),--enable-irq,--disable-irq) \
|
||||
@ -174,6 +175,7 @@ COLLECTD_DEPENDENCIES = \
|
||||
$(if $(BR2_PACKAGE_COLLECTD_DPDK_TELEMETRY),jansson) \
|
||||
$(if $(BR2_PACKAGE_COLLECTD_GPS),gpsd) \
|
||||
$(if $(BR2_PACKAGE_COLLECTD_GRPC),grpc) \
|
||||
$(if $(BR2_PACKAGE_COLLECTD_IPMI),openipmi) \
|
||||
$(if $(BR2_PACKAGE_COLLECTD_IPTABLES),iptables) \
|
||||
$(if $(BR2_PACKAGE_COLLECTD_LOGSTASH),yajl) \
|
||||
$(if $(BR2_PACKAGE_COLLECTD_LUA),luainterpreter) \
|
||||
|
Loading…
Reference in New Issue
Block a user