Code

collectd.conf: Added new config options and plugins.
authorSebastian Harl <sh@tokkee.org>
Sun, 15 Sep 2013 12:57:39 +0000 (14:57 +0200)
committerSebastian Harl <sh@tokkee.org>
Sun, 15 Sep 2013 12:57:39 +0000 (14:57 +0200)
debian/collectd.conf

index e0476575b77f1234f89dca1a6d223266dfbacef4..18925d0ab4a865db147b6943e078a05d6cd45c28 100644 (file)
@@ -18,6 +18,13 @@ FQDNLookup true
 #PluginDir "/usr/lib/collectd"
 #TypesDB "/usr/share/collectd/types.db" "/etc/collectd/my_types.db"
 
+#----------------------------------------------------------------------------#
+# When enabled, plugins are loaded automatically with the default options    #
+# when an appropriate <Plugin ...> block is encountered.                     #
+# Disabled by default.                                                       #
+#----------------------------------------------------------------------------#
+#AutoLoadPlugin false
+
 #----------------------------------------------------------------------------#
 # Interval at which to query values. This may be overwritten on a per-plugin #
 # base by using the 'Interval' option of the LoadPlugin block:               #
@@ -31,6 +38,11 @@ FQDNLookup true
 #ReadThreads 5
 #WriteThreads 5
 
+# Limit the size of the write queue. Default is no limit. Setting up a limit
+# is recommended for servers handling a high volume of traffic.
+#WriteQueueLimitHigh 1000000
+#WriteQueueLimitLow   800000
+
 ##############################################################################
 # Logging                                                                    #
 #----------------------------------------------------------------------------#
@@ -66,6 +78,7 @@ LoadPlugin syslog
 #LoadPlugin ascent
 LoadPlugin battery
 #LoadPlugin bind
+#LoadPlugin cgroups
 #LoadPlugin conntrack
 #LoadPlugin contextswitch
 LoadPlugin cpu
@@ -94,6 +107,7 @@ LoadPlugin irq
 #LoadPlugin java
 #LoadPlugin libvirt
 LoadPlugin load
+#LoadPlugin lvm
 #LoadPlugin madwifi
 #LoadPlugin mbmon
 #LoadPlugin md
@@ -131,6 +145,7 @@ LoadPlugin rrdtool
 #LoadPlugin sensors
 #LoadPlugin serial
 #LoadPlugin snmp
+#LoadPlugin statsd
 LoadPlugin swap
 #LoadPlugin table
 #LoadPlugin tail
@@ -251,6 +266,11 @@ LoadPlugin users
 #      </View>
 #</Plugin>
 
+#<Plugin "cgroups">
+#      CGroup "libvirt"
+#      IgnoreSelected false
+#</Plugin>
+
 #<Plugin csv>
 #      DataDir "/var/lib/collectd/csv"
 #      StoreRates false
@@ -373,6 +393,9 @@ LoadPlugin users
 #      ReportByDevice false
 #      ReportReserved false
 #      ReportInodes false
+
+#      ValuesAbsolute true
+#      ValuesPercentage false
 </Plugin>
 
 #<Plugin disk>
@@ -881,6 +904,16 @@ LoadPlugin users
 #      </Host>
 #</Plugin>
 
+#<Plugin statsd>
+#      Host "::"
+#      Port "8125"
+#      DeleteCounters false
+#      DeleteTimers   false
+#      DeleteGauges   false
+#      DeleteSets     false
+#      TimerPercentile 90.0
+#</Plugin>
+
 #<Plugin swap>
 #      ReportByDevice false
 #      ReportBytes true
@@ -994,15 +1027,23 @@ LoadPlugin users
 #      <Instance>
 #              CollectCache true
 #              CollectBackend true
+#              CollectBan false           # Varnish 3 only
 #              CollectConnections true
+#              CollectDirectorDNS false   # Varnish 3 only
 #              CollectSHM true
 #              CollectESI false
 #              CollectFetch false
 #              CollectHCB false
-#              CollectSMA false
+#              CollectObjects false
+#              CollectPurge false         # Varnish 2 only
+#              CollectSession false
+#              CollectSMA false           # Varnish 2 only
 #              CollectSMS false
-#              CollectSM false
+#              CollectSM false            # Varnish 2 only
+#              CollectStruct false
 #              CollectTotals false
+#              CollectUptime false
+#              CollectdVCL false
 #              CollectWorkers false
 #      </Instance>
 #
@@ -1019,6 +1060,8 @@ LoadPlugin users
 #      <Node "example">
 #              Host "localhost"
 #              Port "2003"
+#              Protocol "udp"
+#              LogSendErrors true
 #              Prefix "collectd"
 #              Postfix "collectd"
 #              StoreRates true
@@ -1055,6 +1098,7 @@ LoadPlugin users
 #              Protocol UDP
 #              StoreRates true
 #              AlwaysAppendDS false
+#              TTLFactor 2.0
 #      </Node>
 #      Tag "foobar"
 #</Plugin>