summaryrefslogtreecommitdiffstats
path: root/rules/collectd.in
blob: 8cb14a5358a028cb0f7f65c4b2f5ffeeaac17cfc (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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
## SECTION=shell_and_console

menuconfig COLLECTD
	tristate
	select LIBCAP
	select LIBOPING			if COLLECTD_PING
	select RRDTOOL			if COLLECTD_RRDTOOL || COLLECTD_RRDCACHED
	select RRDTOOL_RRDCACHED	if COLLECTD_RRDCACHED
	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.

config COLLECTD_RRDCACHED
	bool
	prompt "rrdcached"
	help
	  Connects to the RRD caching daemon and submits updates
	  for RRD files to that daemon.

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_MEMORY
	bool
	prompt "memory"
	help
	  The Memory plugin collects physical memory utilization.

config COLLECTD_PING
	bool
	prompt "ping"
	help
	  The Ping plugin starts a new thread which sends ICMP "ping" packets
	  to the configured hosts periodically and measures the network
	  latency.

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

comment "Other Plugins"

config COLLECTD_EXEC
	bool
	prompt "exec"
	help
	  The Exec plugin executes scripts and reads values back that are
	  printed to stdout using the collectd plain text protocol.

config COLLECTD_THRESHOLD
	bool
	prompt "threshold"
	help
	  The Threshold plugin checks values collected or received by collectd
	  against a configurable threshold and issues notifications if values
	  are out of bounds.

endif