Commit based upon d6442850bde61f0c3e7e2ae3247b4a856073c5e0
[librecmc/package-feed.git] / utils / collectd / files / collectd.conf
1 # Config file for collectd. More info: https://collectd.org/
2 # Note: Luci statistics will generate a new config and overwrite this file.
3
4 #Hostname   "localhost"
5 #FQDNLookup  true
6 BaseDir "/var/run/collectd"
7 Include "/etc/collectd/conf.d"
8 PIDFile "/var/run/collectd.pid"
9 PluginDir "/usr/lib/collectd"
10 TypesDB "/usr/share/collectd/types.db"
11 Interval    30
12 ReadThreads 2
13
14 LoadPlugin interface
15 LoadPlugin load
16 #LoadPlugin ping
17 LoadPlugin rrdtool
18
19 <Plugin rrdtool>
20         DataDir "/tmp/rrd"
21         RRARows 100
22         RRASingle true
23         RRATimespan 3600
24         RRATimespan 86400
25         RRATimespan 604800
26         RRATimespan 2678400
27         RRATimespan 31622400
28 </Plugin>
29
30 <Plugin interface>
31         IgnoreSelected false
32         Interface "br-lan"
33 </Plugin>
34
35 #<Plugin ping>
36 #       Host "host.foo.bar"
37 #       Interval 30
38 #       TTL 127
39 #</Plugin>