summaryrefslogtreecommitdiffstats
path: root/rules/collectd.in
blob: ba359f092265f2e51ba160f7d203f9b77c791d8f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
## SECTION=shell_and_console

menuconfig COLLECTD
	tristate
	select RRDTOOL		if COLLECTD_RRDTOOL
	select LM_SENSORS	if COLLECTD_SENSORS
	prompt "collectd                      "
	help
	  collectd is a daemon which collects system performance statistics
	  periodically and provides mechanisms to store the values in a
	  variety of ways, for example in RRD files.

if COLLECTD

comment "Logging Plugins"

config COLLECTD_LOGFILE
	bool
	prompt "logfile"
	help
	  logfile support for collectd.

config COLLECTD_SYSLOG
	bool
	prompt "syslog"
	help
	  Syslog support for collectd.

comment "Write Plugins"

config COLLECTD_RRDTOOL
	bool
	prompt "rrdtool"
	help
	  With the RRDtool plugin, collectd writes values into a
	  round-robin database, using librrd.

comment "Read Plugins"

config COLLECTD_CPU
	bool
	prompt "cpu"
	help
	  The CPU plugin collects data about what your CPU is actually doing,
	  and if it is being idle or in the various states.

config COLLECTD_SENSORS
	bool
	prompt "sensors"
	help
	  The Sensors plugin uses lm-sensors to read hardware sensors.

endif