Code

2efd8eb4dfb74b7dcaf44a265fe58fbc7045a5f3
[pkg-collectd.git] / debian / collectd.conf
1 # Config file for collectd(1).
2 #
3 # Some plugins need additional configuration and are disabled by default.
4 # Please read collectd.conf(5) for details.
5 #
6 # You should also read /usr/share/doc/collectd-core/README.Debian.plugins
7 # before enabling any more plugins.
9 #Hostname "localhost"
10 FQDNLookup true
11 #BaseDir "/var/lib/collectd"
12 #PluginDir "/usr/lib/collectd"
13 #TypesDB "/usr/share/collectd/types.db" "/etc/collectd/my_types.db"
14 #Interval 10
15 #Timeout 2
16 #ReadThreads 5
18 #LoadPlugin logfile
19 LoadPlugin syslog
21 #<Plugin logfile>
22 #       LogLevel "info"
23 #       File STDOUT
24 #       Timestamp true
25 #       PrintSeverity false
26 #</Plugin>
28 <Plugin syslog>
29         LogLevel info
30 </Plugin>
32 #LoadPlugin apache
33 #LoadPlugin apcups
34 #LoadPlugin ascent
35 LoadPlugin battery
36 #LoadPlugin bind
37 #LoadPlugin conntrack
38 #LoadPlugin contextswitch
39 LoadPlugin cpu
40 #LoadPlugin cpufreq
41 #LoadPlugin csv
42 #LoadPlugin curl
43 #LoadPlugin curl_json
44 #LoadPlugin curl_xml
45 #LoadPlugin dbi
46 LoadPlugin df
47 LoadPlugin disk
48 #LoadPlugin dns
49 #LoadPlugin email
50 LoadPlugin entropy
51 #LoadPlugin ethstat
52 #LoadPlugin exec
53 #LoadPlugin filecount
54 #LoadPlugin fscache
55 #LoadPlugin gmond
56 #LoadPlugin hddtemp
57 LoadPlugin interface
58 #LoadPlugin ipmi
59 #LoadPlugin iptables
60 #LoadPlugin ipvs
61 LoadPlugin irq
62 #LoadPlugin java
63 #LoadPlugin libvirt
64 LoadPlugin load
65 #LoadPlugin madwifi
66 #LoadPlugin mbmon
67 #LoadPlugin md
68 #LoadPlugin memcachec
69 #LoadPlugin memcached
70 LoadPlugin memory
71 #LoadPlugin multimeter
72 #LoadPlugin mysql
73 #LoadPlugin netlink
74 #LoadPlugin network
75 #LoadPlugin nfs
76 #LoadPlugin nginx
77 #LoadPlugin notify_desktop
78 #LoadPlugin notify_email
79 #LoadPlugin ntpd
80 #LoadPlugin numa
81 #LoadPlugin nut
82 #LoadPlugin olsrd
83 #LoadPlugin openvpn
84 #<LoadPlugin perl>
85 #       Globals true
86 #</LoadPlugin>
87 #LoadPlugin pinba
88 #LoadPlugin ping
89 #LoadPlugin postgresql
90 #LoadPlugin powerdns
91 LoadPlugin processes
92 #LoadPlugin protocols
93 #<LoadPlugin python>
94 #       Globals true
95 #</LoadPlugin>
96 #LoadPlugin rrdcached
97 LoadPlugin rrdtool
98 #LoadPlugin sensors
99 #LoadPlugin serial
100 #LoadPlugin snmp
101 LoadPlugin swap
102 #LoadPlugin table
103 #LoadPlugin tail
104 #LoadPlugin tcpconns
105 #LoadPlugin teamspeak2
106 #LoadPlugin ted
107 #LoadPlugin thermal
108 #LoadPlugin tokyotyrant
109 #LoadPlugin unixsock
110 #LoadPlugin uptime
111 LoadPlugin users
112 #LoadPlugin uuid
113 #LoadPlugin varnish
114 #LoadPlugin vmem
115 #LoadPlugin vserver
116 #LoadPlugin wireless
117 #LoadPlugin write_graphite
118 #LoadPlugin write_http
119 #LoadPlugin write_mongodb
121 #<Plugin apache>
122 #       <Instance "foo">
123 #               URL "http://localhost/server-status?auto"
124 #               User "www-user"
125 #               Password "secret"
126 #               VerifyPeer false
127 #               VerifyHost false
128 #               CACert "/etc/ssl/ca.crt"
129 #               Server "apache"
130 #       </Instance>
132 #       <Instance "bar">
133 #               URL "http://some.domain.tld/status?auto"
134 #               Host "some.domain.tld"
135 #               Server "lighttpd"
136 #       </Instance>
137 #</Plugin>
139 #<Plugin apcups>
140 #       Host "localhost"
141 #       Port "3551"
142 #</Plugin>
144 #<Plugin ascent>
145 #       URL "http://localhost/ascent/status/"
146 #       User "www-user"
147 #       Password "secret"
148 #       VerifyPeer false
149 #       VerifyHost false
150 #       CACert "/etc/ssl/ca.crt"
151 #</Plugin>
153 #<Plugin "bind">
154 #       URL "http://localhost:8053/"
156 #       ParseTime false
158 #       OpCodes true
159 #       QTypes true
160 #       ServerStats true
161 #       ZoneMaintStats true
162 #       ResolverStats false
163 #       MemoryStats true
165 #       <View "_default">
166 #               QTypes true
167 #               ResolverStats true
168 #               CacheRRSets true
170 #               Zone "127.in-addr.arpa/IN"
171 #       </View>
172 #</Plugin>
174 #<Plugin csv>
175 #       DataDir "/var/lib/collectd/csv"
176 #       StoreRates false
177 #</Plugin>
179 #<Plugin curl>
180 #       <Page "stock_quotes">
181 #               URL "http://finance.google.com/finance?q=NYSE%3AAMD"
182 #               User "foo"
183 #               Password "bar"
184 #               VerifyPeer false
185 #               VerifyHost false
186 #               CACert "/etc/ssl/ca.crt"
187 #               MeasureResponseTime false
188 #               <Match>
189 #                       Regex "<span +class=\"pr\"[^>]*> *([0-9]*\\.[0-9]+) *</span>"
190 #                       DSType "GaugeAverage"
191 #                       Type "stock_value"
192 #                       Instance "AMD"
193 #               </Match>
194 #       </Page>
195 #</Plugin>
197 #<Plugin curl_json>
198 ## See: http://wiki.apache.org/couchdb/Runtime_Statistics
199 #  <URL "http://localhost:5984/_stats">
200 #    Instance "httpd"
201 #    <Key "httpd/requests/count">
202 #      Type "http_requests"
203 #    </Key>
205 #    <Key "httpd_request_methods/*/count">
206 #      Type "http_request_methods"
207 #    </Key>
209 #    <Key "httpd_status_codes/*/count">
210 #      Type "http_response_codes"
211 #    </Key>
212 #  </URL>
213 ## Database status metrics:
214 #  <URL "http://localhost:5984/_all_dbs">
215 #    Instance "dbs"
216 #    <Key "*/doc_count">
217 #      Type "gauge"
218 #    </Key>
219 #    <Key "*/doc_del_count">
220 #      Type "counter"
221 #    </Key>
222 #    <Key "*/disk_size">
223 #      Type "bytes"
224 #    </Key>
225 #  </URL>
226 #</Plugin>
228 #<Plugin "curl_xml">
229 #       <URL "http://localhost/stats.xml">
230 #               Host "my_host"
231 #               Instance "some_instance"
232 #               User "collectd"
233 #               Password "thaiNg0I"
234 #               VerifyPeer true
235 #               VerifyHost true
236 #               CACert "/path/to/ca.crt"
238 #               <XPath "table[@id=\"magic_level\"]/tr">
239 #                       Type "magic_level"
240 #                       InstancePrefix "prefix-"
241 #                       InstanceFrom "td[1]"
242 #                       ValuesFrom "td[2]/span[@class=\"level\"]"
243 #               </XPath>
244 #       </URL>
245 #</Plugin>
247 #<Plugin dbi>
248 #       <Query "num_of_customers">
249 #               Statement "SELECT 'customers' AS c_key, COUNT(*) AS c_value \
250 #                               FROM customers_tbl"
251 #               MinVersion 40102
252 #               MaxVersion 50042
253 #               <Result>
254 #                       Type "gauge"
255 #                       InstancePrefix "customer"
256 #                       InstancesFrom "c_key"
257 #                       ValuesFrom "c_value"
258 #               </Result>
259 #       </Query>
261 #       <Database "customers_db">
262 #               Driver "mysql"
263 #               DriverOption "host" "localhost"
264 #               DriverOption "username" "collectd"
265 #               DriverOption "password" "secret"
266 #               DriverOption "dbname" "custdb0"
267 #               SelectDB "custdb0"
268 #               Query "num_of_customers"
269 #               Query "..."
270 #       </Database>
271 #</Plugin>
273 #<Plugin df>
274 #       Device "/dev/sda1"
275 #       Device "192.168.0.2:/mnt/nfs"
276 #       MountPoint "/home"
277 #       FSType "ext3"
278 #       IgnoreSelected false
279 #       ReportByDevice false
280 #       ReportReserved false
281 #       ReportInodes false
282 #</Plugin>
284 #<Plugin disk>
285 #       Disk "hda"
286 #       Disk "/sda[23]/"
287 #       IgnoreSelected false
288 #</Plugin>
290 #<Plugin dns>
291 #       Interface "eth0"
292 #       IgnoreSource "192.168.0.1"
293 #       SelectNumericQueryTypes false
294 #</Plugin>
296 #<Plugin email>
297 #       SocketFile "/var/run/collectd-email"
298 #       SocketGroup "collectd"
299 #       SocketPerms "0770"
300 #       MaxConns 5
301 #</Plugin>
303 #<Plugin ethstat>
304 #       Interface "eth0"
305 #       Map "rx_csum_offload_errors" "if_rx_errors" "checksum_offload"
306 #       Map "multicast" "if_multicast"
307 #       MappedOnly false
308 #</Plugin>
310 #<Plugin exec>
311 #       Exec user "/path/to/exec"
312 #       Exec "user:group" "/path/to/exec"
313 #       NotificationExec user "/path/to/exec"
314 #</Plugin>
316 #<Plugin filecount>
317 #       <Directory "/path/to/dir">
318 #               Instance "foodir"
319 #               Name "*.conf"
320 #               MTime "-5m"
321 #               Size "+10k"
322 #               Recursive true
323 #               IncludeHidden false
324 #       </Directory>
325 #</Plugin>
327 #<Plugin gmond>
328 #       MCReceiveFrom "239.2.11.71" "8649"
330 #       <Metric "swap_total">
331 #               Type "swap"
332 #               TypeInstance "total"
333 #               DataSource "value"
334 #       </Metric>
336 #       <Metric "swap_free">
337 #               Type "swap"
338 #               TypeInstance "free"
339 #               DataSource "value"
340 #       </Metric>
341 #</Plugin>
343 #<Plugin hddtemp>
344 #       Host "127.0.0.1"
345 #       Port 7634
346 #</Plugin>
348 #<Plugin interface>
349 #       Interface "eth0"
350 #       IgnoreSelected false
351 #</Plugin>
353 #<Plugin ipmi>
354 #       Sensor "some_sensor"
355 #       Sensor "another_one"
356 #       IgnoreSelected false
357 #       NotifySensorAdd false
358 #       NotifySensorRemove true
359 #       NotifySensorNotPresent false
360 #</Plugin>
362 #<Plugin iptables>
363 #       Chain "table" "chain"
364 #</Plugin>
366 #<Plugin irq>
367 #       Irq 7
368 #       Irq 8
369 #       Irq 9
370 #       IgnoreSelected true
371 #</Plugin>
373 #<Plugin java>
374 #       JVMArg "-verbose:jni"
375 #       JVMArg "-Djava.class.path=/usr/share/collectd/java/collectd-api.jar"
377 #       LoadPlugin "org.collectd.java.GenericJMX"
378 #       <Plugin "GenericJMX">
379 #               # See /usr/share/doc/collectd/examples/GenericJMX.conf
380 #               # for an example config.
381 #       </Plugin>
382 #</Plugin>
384 #<Plugin libvirt>
385 #       Connection "xen:///"
386 #       RefreshInterval 60
387 #       Domain "name"
388 #       BlockDevice "name:device"
389 #       InterfaceDevice "name:device"
390 #       IgnoreSelected false
391 #       HostnameFormat name
392 #       InterfaceFormat name
393 #</Plugin>
395 #<Plugin madwifi>
396 #       Interface "wlan0"
397 #       IgnoreSelected false
398 #       Source "SysFS"
399 #       WatchSet "None"
400 #       WatchAdd "node_octets"
401 #       WatchAdd "node_rssi"
402 #       WatchAdd "is_rx_acl"
403 #       WatchAdd "is_scan_active"
404 #</Plugin>
406 #<Plugin mbmon>
407 #       Host "127.0.0.1"
408 #       Port 411
409 #</Plugin>
411 #<Plugin md>
412 #       Device "/dev/md0"
413 #       IgnoreSelected false
414 #</Plugin>
416 #<Plugin memcachec>
417 #       <Page "plugin_instance">
418 #               Server "localhost"
419 #               Key "page_key"
420 #               <Match>
421 #                       Regex "(\\d+) bytes sent"
422 #                       ExcludeRegex "<lines to be excluded>"
423 #                       DSType CounterAdd
424 #                       Type "ipt_octets"
425 #                       Instance "type_instance"
426 #               </Match>
427 #       </Page>
428 #</Plugin>
430 #<Plugin memcached>
431 #       Socket "/var/run/memcached.sock"
432 # or:
433 #       Host "127.0.0.1"
434 #       Port "11211"
435 #</Plugin>
437 #<Plugin mysql>
438 #       <Database db_name>
439 #               Host "database.serv.er"
440 #               Port "3306"
441 #               User "db_user"
442 #               Password "secret"
443 #               Database "db_name"
444 #               MasterStats true
445 #       </Database>
447 #       <Database db_name2>
448 #               Host "localhost"
449 #               Socket "/var/run/mysql/mysqld.sock"
450 #               SlaveStats true
451 #               SlaveNotifications true
452 #       </Database>
453 #</Plugin>
455 #<Plugin netlink>
456 #       Interface "All"
457 #       VerboseInterface "All"
458 #       QDisc "eth0" "pfifo_fast-1:0"
459 #       Class "ppp0" "htb-1:10"
460 #       Filter "ppp0" "u32-1:0"
461 #       IgnoreSelected false
462 #</Plugin>
464 #<Plugin network>
465 #       # client setup:
466 #       Server "ff18::efc0:4a42" "25826"
467 #       <Server "239.192.74.66" "25826">
468 #               SecurityLevel Encrypt
469 #               Username "user"
470 #               Password "secret"
471 #               Interface "eth0"
472 #       </Server>
473 #       TimeToLive "128"
475 #       # server setup:
476 #       Listen "ff18::efc0:4a42" "25826"
477 #       <Listen "239.192.74.66" "25826">
478 #               SecurityLevel Sign
479 #               AuthFile "/etc/collectd/passwd"
480 #               Interface "eth0"
481 #       </Listen>
482 #       MaxPacketSize 1024
484 #       # proxy setup (client and server as above):
485 #       Forward true
487 #       # statistics about the network plugin itself
488 #       ReportStats false
490 #       # "garbage collection"
491 #       CacheFlush 1800
492 #</Plugin>
494 #<Plugin nginx>
495 #       URL "http://localhost/status?auto"
496 #       User "www-user"
497 #       Password "secret"
498 #       VerifyPeer false
499 #       VerifyHost false
500 #       CACert "/etc/ssl/ca.crt"
501 #</Plugin>
503 #<Plugin notify_desktop>
504 #       OkayTimeout 1000
505 #       WarningTimeout 5000
506 #       FailureTimeout 0
507 #</Plugin>
509 #<Plugin notify_email>
510 #       SMTPServer "localhost"
511 #       SMTPPort 25
512 #       SMTPUser "my-username"
513 #       SMTPPassword "my-password"
514 #       From "collectd@main0server.com"
515 #       # <WARNING/FAILURE/OK> on <hostname>.
516 #       # Beware! Do not use not more than two placeholders (%)!
517 #       Subject "[collectd] %s on %s!"
518 #       Recipient "email1@domain1.net"
519 #       Recipient "email2@domain2.com"
520 #</Plugin>
522 #<Plugin ntpd>
523 #       Host "localhost"
524 #       Port 123
525 #       ReverseLookups false
526 #</Plugin>
528 #<Plugin nut>
529 #       UPS "upsname@hostname:port"
530 #</Plugin>
532 #<Plugin olsrd>
533 #       Host "127.0.0.1"
534 #       Port "2006"
535 #       CollectLinks "Summary"
536 #       CollectRoutes "Summary"
537 #       CollectTopology "Summary"
538 #</Plugin>
540 #<Plugin openvpn>
541 #       StatusFile "/etc/openvpn/openvpn-status.log"
542 #       ImprovedNamingSchema false
543 #       CollectCompression true
544 #       CollectIndividualUsers true
545 #       CollectUserCount false
546 #</Plugin>
548 #<Plugin perl>
549 #       IncludeDir "/my/include/path"
550 #       BaseName "Collectd::Plugins"
551 #       EnableDebugger ""
552 #       LoadPlugin Monitorus
553 #       LoadPlugin OpenVZ
555 #       <Plugin foo>
556 #               Foo "Bar"
557 #               Qux "Baz"
558 #       </Plugin>
559 #</Plugin>
561 #<Plugin pinba>
562 #       Address "::0"
563 #       Port "30002"
564 #       <View "name">
565 #               Host "host name"
566 #               Server "server name"
567 #               Script "script name"
568 #       <View>
569 #</Plugin>
571 #<Plugin ping>
572 #       Host "host.foo.bar"
573 #       Host "host.baz.qux"
574 #       Interval 1.0
575 #       Timeout 0.9
576 #       TTL 255
577 #       SourceAddress "1.2.3.4"
578 #       Device "eth0"
579 #       MaxMissed -1
580 #</Plugin>
582 #<Plugin postgresql>
583 #       <Query magic>
584 #               Statement "SELECT magic FROM wizard WHERE host = $1;"
585 #               Param hostname
587 #               <Result>
588 #                       Type gauge
589 #                       InstancePrefix "magic"
590 #                       ValuesFrom "magic"
591 #               </Result>
592 #       </Query>
594 #       <Query rt36_tickets>
595 #               Statement "SELECT COUNT(type) AS count, type \
596 #                                 FROM (SELECT CASE \
597 #                                              WHEN resolved = 'epoch' THEN 'open' \
598 #                                              ELSE 'resolved' END AS type \
599 #                                              FROM tickets) type \
600 #                                 GROUP BY type;"
602 #               <Result>
603 #                       Type counter
604 #                       InstancePrefix "rt36_tickets"
605 #                       InstancesFrom "type"
606 #                       ValuesFrom "count"
607 #               </Result>
608 #       </Query>
610 #       <Database foo>
611 #               Host "hostname"
612 #               Port 5432
613 #               User "username"
614 #               Password "secret"
616 #               SSLMode "prefer"
617 #               KRBSrvName "kerberos_service_name"
619 #               Query magic
620 #       </Database>
622 #       <Database bar>
623 #               Interval 60
624 #               Service "service_name"
626 #               Query backend # predefined
627 #               Query rt36_tickets
628 #       </Database>
629 #</Plugin>
631 #<Plugin powerdns>
632 #       <Server "server_name">
633 #               Collect "latency"
634 #               Collect "udp-answers" "udp-queries"
635 #               Socket "/var/run/pdns.controlsocket"
636 #       </Server>
637 #       <Recursor "recursor_name">
638 #               Collect "questions"
639 #               Collect "cache-hits" "cache-misses"
640 #               Socket "/var/run/pdns_recursor.controlsocket"
641 #       </Recursor>
642 #       LocalSocket "/opt/collectd/var/run/collectd-powerdns"
643 #</Plugin>
645 #<Plugin processes>
646 #       Process "name"
647 #       ProcessMatch "foobar" "/usr/bin/perl foobar\\.pl.*"
648 #</Plugin>
650 #<Plugin protocols>
651 #       Value "/^Tcp:/"
652 #       IgnoreSelected false
653 #</Plugin>
655 #<Plugin python>
656 #       ModulePath "/path/to/your/python/modules"
657 #       LogTraces true
658 #       Interactive true
659 #       Import "spam"
661 #       <Module spam>
662 #               spam "wonderful" "lovely"
663 #       </Module>
664 #</Plugin>
666 #<Plugin rrdcached>
667 #       DaemonAddress "unix:/var/run/rrdcached.sock"
668 #       DataDir "/var/lib/rrdcached/db/collectd"
669 #       CreateFiles true
670 #       CollectStatistics true
671 #</Plugin>
673 <Plugin rrdtool>
674         DataDir "/var/lib/collectd/rrd"
675 #       CacheTimeout 120
676 #       CacheFlush 900
677 #       WritesPerSecond 30
678 #       RandomTimeout 0
680 # The following settings are rather advanced
681 # and should usually not be touched:
682 #       StepSize 10
683 #       HeartBeat 20
684 #       RRARows 1200
685 #       RRATimespan 158112000
686 #       XFF 0.1
687 </Plugin>
689 #<Plugin sensors>
690 #       SensorConfigFile "/etc/sensors3.conf"
691 #       Sensor "it8712-isa-0290/temperature-temp1"
692 #       Sensor "it8712-isa-0290/fanspeed-fan3"
693 #       Sensor "it8712-isa-0290/voltage-in8"
694 #       IgnoreSelected false
695 #</Plugin>
697 # See /usr/share/doc/collectd/examples/snmp-data.conf.gz for a
698 # comprehensive sample configuration.
699 #<Plugin snmp>
700 #       <Data "powerplus_voltge_input">
701 #               Type "voltage"
702 #               Table false
703 #               Instance "input_line1"
704 #               Scale 0.1
705 #               Values "SNMPv2-SMI::enterprises.6050.5.4.1.1.2.1"
706 #       </Data>
707 #       <Data "hr_users">
708 #               Type "users"
709 #               Table false
710 #               Instance ""
711 #               Shift -1
712 #               Values "HOST-RESOURCES-MIB::hrSystemNumUsers.0"
713 #       </Data>
714 #       <Data "std_traffic">
715 #               Type "if_octets"
716 #               Table true
717 #               InstancePrefix "traffic"
718 #               Instance "IF-MIB::ifDescr"
719 #               Values "IF-MIB::ifInOctets" "IF-MIB::ifOutOctets"
720 #       </Data>
722 #       <Host "some.switch.mydomain.org">
723 #               Address "192.168.0.2"
724 #               Version 1
725 #               Community "community_string"
726 #               Collect "std_traffic"
727 #               Inverval 120
728 #       </Host>
729 #       <Host "some.server.mydomain.org">
730 #               Address "192.168.0.42"
731 #               Version 2
732 #               Community "another_string"
733 #               Collect "std_traffic" "hr_users"
734 #       </Host>
735 #       <Host "some.ups.mydomain.org">
736 #               Address "192.168.0.3"
737 #               Version 1
738 #               Community "more_communities"
739 #               Collect "powerplus_voltge_input"
740 #               Interval 300
741 #       </Host>
742 #</Plugin>
744 #<Plugin swap>
745 #       ReportByDevice false
746 #</Plugin>
748 #<Plugin table>
749 #       <Table "/proc/slabinfo">
750 #               Instance "slabinfo"
751 #               Separator " "
752 #               <Result>
753 #                       Type gauge
754 #                       InstancePrefix "active_objs"
755 #                       InstancesFrom 0
756 #                       ValuesFrom 1
757 #               </Result>
758 #               <Result>
759 #                       Type gauge
760 #                       InstancePrefix "objperslab"
761 #                       InstancesFrom 0
762 #                       ValuesFrom 4
763 #               </Result>
764 #       </Table>
765 #</Plugin>
767 #<Plugin "tail">
768 #       <File "/var/log/exim4/mainlog">
769 #               Instance "exim"
770 #               <Match>
771 #                       Regex "S=([1-9][0-9]*)"
772 #                       DSType "CounterAdd"
773 #                       Type "ipt_bytes"
774 #                       Instance "total"
775 #               </Match>
776 #               <Match>
777 #                       Regex "\\<R=local_user\\>"
778 #                       ExcludeRegex "\\<R=local_user\\>.*mail_spool defer"
779 #                       DSType "CounterInc"
780 #                       Type "counter"
781 #                       Instance "local_user"
782 #               </Match>
783 #       </File>
784 #</Plugin>
786 #<Plugin tcpconns>
787 #       ListeningPorts false
788 #       LocalPort "25"
789 #       RemotePort "25"
790 #</Plugin>
792 #<Plugin teamspeak2>
793 #       Host "127.0.0.1"
794 #       Port "51234"
795 #       Server "8767"
796 #</Plugin>
798 #<Plugin ted>
799 #       Device "/dev/ttyUSB0"
800 #       Retries 0
801 #</Plugin>
803 #<Plugin thermal>
804 #       ForceUseProcfs false
805 #       Device "THRM"
806 #       IgnoreSelected false
807 #</Plugin>
809 #<Plugin tokyotyrant>
810 #       Host "localhost"
811 #       Port "1978"
812 #</Plugin>
814 #<Plugin unixsock>
815 #       SocketFile "/var/run/collectd-unixsock"
816 #       SocketGroup "collectd"
817 #       SocketPerms "0660"
818 #       DeleteSocket false
819 #</Plugin>
821 #<Plugin uuid>
822 #       UUIDFile "/etc/uuid"
823 #</Plugin>
825 #<Plugin varnish>
826 #       <Instance>
827 #               CollectCache true
828 #               CollectBackend true
829 #               CollectConnections true
830 #               CollectSHM true
831 #               CollectESI false
832 #               CollectFetch false
833 #               CollectHCB false
834 #               CollectSMA false
835 #               CollectSMS false
836 #               CollectSM false
837 #               CollectTotals false
838 #               CollectWorkers false
839 #       </Instance>
841 #       <Instance "myinstance">
842 #               CollectCache true
843 #       </Instance>
844 #</Plugin>
846 #<Plugin vmem>
847 #       Verbose false
848 #</Plugin>
850 #<Plugin write_graphite>
851 #       <Carbon>
852 #               Host "localhost"
853 #               Port "2003"
854 #               Prefix "collectd"
855 #               Postfix "collectd"
856 #               StoreRates false
857 #               AlwaysAppendDS false
858 #               EscapeCharacter "_"
859 #       </Carbon>
860 #</Plugin>
862 #<Plugin write_http>
863 #       <URL "http://example.com/collectd-post">
864 #               User "collectd"
865 #               Password "secret"
866 #               VerifyPeer true
867 #               VerifyHost true
868 #               CACert "/etc/ssl/ca.crt"
869 #               Format "Command"
870 #               StoreRates false
871 #       </URL>
872 #</Plugin>
874 #<Plugin write_mongodb>
875 #       <Node "example">
876 #               Host "localhost"
877 #               Port "27017"
878 #               Timeout 1000
879 #               StoreRates false
880 #       <Node>
881 #</Plugin>
883 Include "/etc/collectd/filters.conf"
884 Include "/etc/collectd/thresholds.conf"