aboutsummaryrefslogtreecommitdiff
path: root/utils/collectd/files/collectd.conf
blob: 3afbfad47b59893d8a217c6afbce3fe8a37eab93 (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
# Config file for collectd. More info: https://collectd.org/
# Note: Luci statistics will generate a new config and overwrite this file.

#Hostname   "localhost"
#FQDNLookup  true
BaseDir "/var/run/collectd"
Include "/etc/collectd/conf.d"
PIDFile "/var/run/collectd.pid"
PluginDir "/usr/lib/collectd"
TypesDB "/usr/share/collectd/types.db"
Interval    30
ReadThreads 2

LoadPlugin interface
LoadPlugin load
#LoadPlugin ping
LoadPlugin rrdtool

<Plugin rrdtool>
	DataDir "/tmp/rrd"
	RRARows 100
	RRASingle true
	RRATimespan 3600
	RRATimespan 86400
	RRATimespan 604800
	RRATimespan 2678400
	RRATimespan 31622400
</Plugin>

<Plugin interface>
	IgnoreSelected false
	Interface "br-lan"
</Plugin>

#<Plugin ping>
#	Host "host.foo.bar"
#	Interval 30
#	TTL 127
#</Plugin>