forked from ptierno/signalfx-collectd-configs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
collectd.pre-5.5.conf
79 lines (64 loc) · 1.56 KB
/
collectd.pre-5.5.conf
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
# Install:
# You can usually install with apt-get or yum
# Documentation:
# https://collectd.org/documentation.shtml
# System modifications:
# None
# Config file modifications:
# If you want to use a custom source name, change
# the "Hostname" paramter and set
#
# FQDNLookup false
#
# Make sure TypesDB points to a valid file:
#
# which /usr/share/collectd/types.db
#
# Create the directory managed_config and put
# extra config files there:
#
# mkdir /etc/collectd.d/managed_config
#
TypesDB "/usr/share/collectd/types.db"
# If you use the Hostname parameter, you
# must quote ("...") the second argument
### Hostname "<YOUR_HOSTNAME_HERE>"
FQDNLookup true
Interval 10
Timeout 2
ReadThreads 5
LoadPlugin logfile
<Plugin logfile>
LogLevel "info"
File "/var/log/collectd.log"
Timestamp true
PrintSeverity false
</Plugin>
LoadPlugin cpu
LoadPlugin cpufreq
LoadPlugin df
LoadPlugin disk
LoadPlugin interface
LoadPlugin load
LoadPlugin memory
LoadPlugin protocols
<Plugin "protocols">
Value "Icmp:InDestUnreachs"
Value "Tcp:CurrEstab"
Value "Tcp:OutSegs"
Value "Tcp:RetransSegs"
Value "TcpExt:DelayedACKs"
Value "TcpExt:DelayedACKs"
Value "/Tcp:.*Opens/"
Value "/^TcpExt:.*Octets/"
IgnoreSelected false
</Plugin>
LoadPlugin vmem
<Plugin vmem>
Verbose false
</Plugin>
LoadPlugin uptime
# Note: You will get warnings on startup if you have no *.conf files.
# This is ok: CollectD will still start.
Include "/etc/collectd.d/managed_config/*.conf"
Include "/etc/collectd.d/filtering_config/*.conf"