Merge branch 'collectd-5.6' into collectd-5.7
[collectd.git] / src / collectd.conf.in
1 #
2 # Config file for collectd(1).
3 # Please read collectd.conf(5) for a list of options.
4 # http://collectd.org/
5 #
6
7 ##############################################################################
8 # Global                                                                     #
9 #----------------------------------------------------------------------------#
10 # Global settings for the daemon.                                            #
11 ##############################################################################
12
13 #Hostname    "localhost"
14 #FQDNLookup   true
15 #BaseDir     "@localstatedir@/lib/@PACKAGE_NAME@"
16 #PIDFile     "@localstatedir@/run/@PACKAGE_NAME@.pid"
17 #PluginDir   "@libdir@/@PACKAGE_NAME@"
18 #TypesDB     "@prefix@/share/@PACKAGE_NAME@/types.db"
19
20 #----------------------------------------------------------------------------#
21 # When enabled, plugins are loaded automatically with the default options    #
22 # when an appropriate <Plugin ...> block is encountered.                     #
23 # Disabled by default.                                                       #
24 #----------------------------------------------------------------------------#
25 #AutoLoadPlugin false
26
27 #----------------------------------------------------------------------------#
28 # When enabled, internal statistics are collected, using "collectd" as the   #
29 # plugin name.                                                               #
30 # Disabled by default.                                                       #
31 #----------------------------------------------------------------------------#
32 #CollectInternalStats false
33
34 #----------------------------------------------------------------------------#
35 # Interval at which to query values. This may be overwritten on a per-plugin #
36 # base by using the 'Interval' option of the LoadPlugin block:               #
37 #   <LoadPlugin foo>                                                         #
38 #       Interval 60                                                          #
39 #   </LoadPlugin>                                                            #
40 #----------------------------------------------------------------------------#
41 #Interval     10
42
43 #MaxReadInterval 86400
44 #Timeout         2
45 #ReadThreads     5
46 #WriteThreads    5
47
48 # Limit the size of the write queue. Default is no limit. Setting up a limit is
49 # recommended for servers handling a high volume of traffic.
50 #WriteQueueLimitHigh 1000000
51 #WriteQueueLimitLow   800000
52
53 ##############################################################################
54 # Logging                                                                    #
55 #----------------------------------------------------------------------------#
56 # Plugins which provide logging functions should be loaded first, so log     #
57 # messages generated when loading or configuring other plugins can be        #
58 # accessed.                                                                  #
59 ##############################################################################
60
61 @LOAD_PLUGIN_SYSLOG@LoadPlugin syslog
62 @LOAD_PLUGIN_LOGFILE@LoadPlugin logfile
63 @LOAD_PLUGIN_LOG_LOGSTASH@LoadPlugin log_logstash
64
65 #<Plugin logfile>
66 #       LogLevel @DEFAULT_LOG_LEVEL@
67 #       File STDOUT
68 #       Timestamp true
69 #       PrintSeverity false
70 #</Plugin>
71
72 #<Plugin log_logstash>
73 #       LogLevel @DEFAULT_LOG_LEVEL@
74 #       File "@localstatedir@/log/@PACKAGE_NAME@.json.log"
75 #</Plugin>
76
77 #<Plugin syslog>
78 #       LogLevel @DEFAULT_LOG_LEVEL@
79 #</Plugin>
80
81 ##############################################################################
82 # LoadPlugin section                                                         #
83 #----------------------------------------------------------------------------#
84 # Lines beginning with a single `#' belong to plugins which have been built  #
85 # but are disabled by default.                                               #
86 #                                                                            #
87 # Lines beginning with `##' belong to plugins which have not been built due  #
88 # to missing dependencies or because they have been deactivated explicitly.  #
89 ##############################################################################
90
91 #@BUILD_PLUGIN_AGGREGATION_TRUE@LoadPlugin aggregation
92 #@BUILD_PLUGIN_AMQP_TRUE@LoadPlugin amqp
93 #@BUILD_PLUGIN_APACHE_TRUE@LoadPlugin apache
94 #@BUILD_PLUGIN_APCUPS_TRUE@LoadPlugin apcups
95 #@BUILD_PLUGIN_APPLE_SENSORS_TRUE@LoadPlugin apple_sensors
96 #@BUILD_PLUGIN_AQUAERO_TRUE@LoadPlugin aquaero
97 #@BUILD_PLUGIN_ASCENT_TRUE@LoadPlugin ascent
98 #@BUILD_PLUGIN_BAROMETER_TRUE@LoadPlugin barometer
99 #@BUILD_PLUGIN_BATTERY_TRUE@LoadPlugin battery
100 #@BUILD_PLUGIN_BIND_TRUE@LoadPlugin bind
101 #@BUILD_PLUGIN_CEPH_TRUE@LoadPlugin ceph
102 #@BUILD_PLUGIN_CGROUPS_TRUE@LoadPlugin cgroups
103 #@BUILD_PLUGIN_CHRONY_TRUE@LoadPlugin chrony
104 #@BUILD_PLUGIN_CONNTRACK_TRUE@LoadPlugin conntrack
105 #@BUILD_PLUGIN_CONTEXTSWITCH_TRUE@LoadPlugin contextswitch
106 @BUILD_PLUGIN_CPU_TRUE@@BUILD_PLUGIN_CPU_TRUE@LoadPlugin cpu
107 #@BUILD_PLUGIN_CPUFREQ_TRUE@LoadPlugin cpufreq
108 #@BUILD_PLUGIN_CPUSLEEP_TRUE@LoadPlugin cpusleep
109 @LOAD_PLUGIN_CSV@LoadPlugin csv
110 #@BUILD_PLUGIN_CURL_TRUE@LoadPlugin curl
111 #@BUILD_PLUGIN_CURL_JSON_TRUE@LoadPlugin curl_json
112 #@BUILD_PLUGIN_CURL_XML_TRUE@LoadPlugin curl_xml
113 #@BUILD_PLUGIN_DBI_TRUE@LoadPlugin dbi
114 #@BUILD_PLUGIN_DF_TRUE@LoadPlugin df
115 #@BUILD_PLUGIN_DISK_TRUE@LoadPlugin disk
116 #@BUILD_PLUGIN_DNS_TRUE@LoadPlugin dns
117 #@BUILD_PLUGIN_DPDKSTAT_TRUE@LoadPlugin dpdkstat
118 #@BUILD_PLUGIN_DRBD_TRUE@LoadPlugin drbd
119 #@BUILD_PLUGIN_EMAIL_TRUE@LoadPlugin email
120 #@BUILD_PLUGIN_ENTROPY_TRUE@LoadPlugin entropy
121 #@BUILD_PLUGIN_ETHSTAT_TRUE@LoadPlugin ethstat
122 #@BUILD_PLUGIN_EXEC_TRUE@LoadPlugin exec
123 #@BUILD_PLUGIN_FHCOUNT_TRUE@LoadPlugin fhcount
124 #@BUILD_PLUGIN_FILECOUNT_TRUE@LoadPlugin filecount
125 #@BUILD_PLUGIN_FSCACHE_TRUE@LoadPlugin fscache
126 #@BUILD_PLUGIN_GMOND_TRUE@LoadPlugin gmond
127 #@BUILD_PLUGIN_GPS_TRUE@LoadPlugin gps
128 #@BUILD_PLUGIN_GRPC_TRUE@LoadPlugin grpc
129 #@BUILD_PLUGIN_HDDTEMP_TRUE@LoadPlugin hddtemp
130 #@BUILD_PLUGIN_HUGEPAGES_TRUE@LoadPlugin hugepages
131 #@BUILD_PLUGIN_INTEL_RDT_TRUE@LoadPlugin intel_rdt
132 @BUILD_PLUGIN_INTERFACE_TRUE@@BUILD_PLUGIN_INTERFACE_TRUE@LoadPlugin interface
133 #@BUILD_PLUGIN_IPC_TRUE@LoadPlugin ipc
134 #@BUILD_PLUGIN_IPMI_TRUE@LoadPlugin ipmi
135 #@BUILD_PLUGIN_IPTABLES_TRUE@LoadPlugin iptables
136 #@BUILD_PLUGIN_IPVS_TRUE@LoadPlugin ipvs
137 #@BUILD_PLUGIN_IRQ_TRUE@LoadPlugin irq
138 #@BUILD_PLUGIN_JAVA_TRUE@LoadPlugin java
139 @BUILD_PLUGIN_LOAD_TRUE@@BUILD_PLUGIN_LOAD_TRUE@LoadPlugin load
140 #@BUILD_PLUGIN_LPAR_TRUE@LoadPlugin lpar
141 #@BUILD_PLUGIN_LUA_TRUE@LoadPlugin lua
142 #@BUILD_PLUGIN_LVM_TRUE@LoadPlugin lvm
143 #@BUILD_PLUGIN_MADWIFI_TRUE@LoadPlugin madwifi
144 #@BUILD_PLUGIN_MBMON_TRUE@LoadPlugin mbmon
145 #@BUILD_PLUGIN_MD_TRUE@LoadPlugin md
146 #@BUILD_PLUGIN_MEMCACHEC_TRUE@LoadPlugin memcachec
147 #@BUILD_PLUGIN_MEMCACHED_TRUE@LoadPlugin memcached
148 @BUILD_PLUGIN_MEMORY_TRUE@@BUILD_PLUGIN_MEMORY_TRUE@LoadPlugin memory
149 #@BUILD_PLUGIN_MIC_TRUE@LoadPlugin mic
150 #@BUILD_PLUGIN_MODBUS_TRUE@LoadPlugin modbus
151 #@BUILD_PLUGIN_MQTT_TRUE@LoadPlugin mqtt
152 #@BUILD_PLUGIN_MULTIMETER_TRUE@LoadPlugin multimeter
153 #@BUILD_PLUGIN_MYSQL_TRUE@LoadPlugin mysql
154 #@BUILD_PLUGIN_NETAPP_TRUE@LoadPlugin netapp
155 #@BUILD_PLUGIN_NETLINK_TRUE@LoadPlugin netlink
156 @LOAD_PLUGIN_NETWORK@LoadPlugin network
157 #@BUILD_PLUGIN_NFS_TRUE@LoadPlugin nfs
158 #@BUILD_PLUGIN_NGINX_TRUE@LoadPlugin nginx
159 #@BUILD_PLUGIN_NOTIFY_DESKTOP_TRUE@LoadPlugin notify_desktop
160 #@BUILD_PLUGIN_NOTIFY_EMAIL_TRUE@LoadPlugin notify_email
161 #@BUILD_PLUGIN_NOTIFY_NAGIOS_TRUE@LoadPlugin notify_nagios
162 #@BUILD_PLUGIN_NTPD_TRUE@LoadPlugin ntpd
163 #@BUILD_PLUGIN_NUMA_TRUE@LoadPlugin numa
164 #@BUILD_PLUGIN_NUT_TRUE@LoadPlugin nut
165 #@BUILD_PLUGIN_OLSRD_TRUE@LoadPlugin olsrd
166 #@BUILD_PLUGIN_ONEWIRE_TRUE@LoadPlugin onewire
167 #@BUILD_PLUGIN_OPENLDAP_TRUE@LoadPlugin openldap
168 #@BUILD_PLUGIN_OPENVPN_TRUE@LoadPlugin openvpn
169 #@BUILD_PLUGIN_ORACLE_TRUE@LoadPlugin oracle
170 #@BUILD_PLUGIN_PERL_TRUE@LoadPlugin perl
171 #@BUILD_PLUGIN_PINBA_TRUE@LoadPlugin pinba
172 #@BUILD_PLUGIN_PING_TRUE@LoadPlugin ping
173 #@BUILD_PLUGIN_POSTGRESQL_TRUE@LoadPlugin postgresql
174 #@BUILD_PLUGIN_POWERDNS_TRUE@LoadPlugin powerdns
175 #@BUILD_PLUGIN_PROCESSES_TRUE@LoadPlugin processes
176 #@BUILD_PLUGIN_PROTOCOLS_TRUE@LoadPlugin protocols
177 #@BUILD_PLUGIN_PYTHON_TRUE@LoadPlugin python
178 #@BUILD_PLUGIN_REDIS_TRUE@LoadPlugin redis
179 #@BUILD_PLUGIN_ROUTEROS_TRUE@LoadPlugin routeros
180 #@BUILD_PLUGIN_RRDCACHED_TRUE@LoadPlugin rrdcached
181 @LOAD_PLUGIN_RRDTOOL@LoadPlugin rrdtool
182 #@BUILD_PLUGIN_SENSORS_TRUE@LoadPlugin sensors
183 #@BUILD_PLUGIN_SERIAL_TRUE@LoadPlugin serial
184 #@BUILD_PLUGIN_SIGROK_TRUE@LoadPlugin sigrok
185 #@BUILD_PLUGIN_SMART_TRUE@LoadPlugin smart
186 #@BUILD_PLUGIN_SNMP_TRUE@LoadPlugin snmp
187 #@BUILD_PLUGIN_STATSD_TRUE@LoadPlugin statsd
188 #@BUILD_PLUGIN_SWAP_TRUE@LoadPlugin swap
189 #@BUILD_PLUGIN_TABLE_TRUE@LoadPlugin table
190 #@BUILD_PLUGIN_TAIL_TRUE@LoadPlugin tail
191 #@BUILD_PLUGIN_TAIL_CSV_TRUE@LoadPlugin tail_csv
192 #@BUILD_PLUGIN_TAPE_TRUE@LoadPlugin tape
193 #@BUILD_PLUGIN_TCPCONNS_TRUE@LoadPlugin tcpconns
194 #@BUILD_PLUGIN_TEAMSPEAK2_TRUE@LoadPlugin teamspeak2
195 #@BUILD_PLUGIN_TED_TRUE@LoadPlugin ted
196 #@BUILD_PLUGIN_THERMAL_TRUE@LoadPlugin thermal
197 #@BUILD_PLUGIN_TOKYOTYRANT_TRUE@LoadPlugin tokyotyrant
198 #@BUILD_PLUGIN_TURBOSTAT_TRUE@LoadPlugin turbostat
199 #@BUILD_PLUGIN_UNIXSOCK_TRUE@LoadPlugin unixsock
200 #@BUILD_PLUGIN_UPTIME_TRUE@LoadPlugin uptime
201 #@BUILD_PLUGIN_USERS_TRUE@LoadPlugin users
202 #@BUILD_PLUGIN_UUID_TRUE@LoadPlugin uuid
203 #@BUILD_PLUGIN_VARNISH_TRUE@LoadPlugin varnish
204 #@BUILD_PLUGIN_VIRT_TRUE@LoadPlugin virt
205 #@BUILD_PLUGIN_VMEM_TRUE@LoadPlugin vmem
206 #@BUILD_PLUGIN_VSERVER_TRUE@LoadPlugin vserver
207 #@BUILD_PLUGIN_WIRELESS_TRUE@LoadPlugin wireless
208 #@BUILD_PLUGIN_WRITE_GRAPHITE_TRUE@LoadPlugin write_graphite
209 #@BUILD_PLUGIN_WRITE_HTTP_TRUE@LoadPlugin write_http
210 #@BUILD_PLUGIN_WRITE_KAFKA_TRUE@LoadPlugin write_kafka
211 #@BUILD_PLUGIN_WRITE_LOG_TRUE@LoadPlugin write_log
212 #@BUILD_PLUGIN_WRITE_MONGODB_TRUE@LoadPlugin write_mongodb
213 #@BUILD_PLUGIN_WRITE_PROMETHEUS_TRUE@LoadPlugin write_prometheus
214 #@BUILD_PLUGIN_WRITE_REDIS_TRUE@LoadPlugin write_redis
215 #@BUILD_PLUGIN_WRITE_RIEMANN_TRUE@LoadPlugin write_riemann
216 #@BUILD_PLUGIN_WRITE_SENSU_TRUE@LoadPlugin write_sensu
217 #@BUILD_PLUGIN_WRITE_TSDB_TRUE@LoadPlugin write_tsdb
218 #@BUILD_PLUGIN_XENCPU_TRUE@LoadPlugin xencpu
219 #@BUILD_PLUGIN_XMMS_TRUE@LoadPlugin xmms
220 #@BUILD_PLUGIN_ZFS_ARC_TRUE@LoadPlugin zfs_arc
221 #@BUILD_PLUGIN_ZONE_TRUE@LoadPlugin zone
222 #@BUILD_PLUGIN_ZOOKEEPER_TRUE@LoadPlugin zookeeper
223
224 ##############################################################################
225 # Plugin configuration                                                       #
226 #----------------------------------------------------------------------------#
227 # In this section configuration stubs for each plugin are provided. A desc-  #
228 # ription of those options is available in the collectd.conf(5) manual page. #
229 ##############################################################################
230
231 #<Plugin aggregation>
232 #  <Aggregation>
233 #    #Host "unspecified"
234 #    Plugin "cpu"
235 #    #PluginInstance "unspecified"
236 #    Type "cpu"
237 #    #TypeInstance "unspecified"
238 #
239 #    GroupBy "Host"
240 #    GroupBy "TypeInstance"
241 #
242 #    CalculateNum false
243 #    CalculateSum false
244 #    CalculateAverage true
245 #    CalculateMinimum false
246 #    CalculateMaximum false
247 #    CalculateStddev false
248 #  </Aggregation>
249 #</Plugin>
250
251 #<Plugin amqp>
252 #  <Publish "name">
253 #    Host "localhost"
254 #    Port "5672"
255 #    VHost "/"
256 #    User "guest"
257 #    Password "guest"
258 #    Exchange "amq.fanout"
259 #    RoutingKey "collectd"
260 #    Persistent false
261 #    StoreRates false
262 #    ConnectionRetryDelay 0
263 #  </Publish>
264 #</Plugin>
265
266 #<Plugin apache>
267 #  <Instance "local">
268 #    URL "http://localhost/status?auto"
269 #    User "www-user"
270 #    Password "secret"
271 #    CACert "/etc/ssl/ca.crt"
272 #  </Instance>
273 #</Plugin>
274
275 #<Plugin apcups>
276 #       Host "localhost"
277 #       Port "3551"
278 #       ReportSeconds true
279 #       PersistentConnection true
280 #</Plugin>
281
282 #<Plugin aquaero>
283 #       Device ""
284 #</Plugin>
285
286 #<Plugin ascent>
287 #       URL "http://localhost/ascent/status/"
288 #       User "www-user"
289 #       Password "secret"
290 #       CACert "/etc/ssl/ca.crt"
291 #</Plugin>
292
293 #<Plugin "barometer">
294 #   Device            "/dev/i2c-0";
295 #   Oversampling      512
296 #   PressureOffset    0.0
297 #   TemperatureOffset 0.0
298 #   Normalization     2
299 #   Altitude          238.0
300 #   TemperatureSensor "myserver/onewire-F10FCA000800/temperature"
301 #</Plugin>
302
303 #<Plugin "battery">
304 #  ValuesPercentage false
305 #  ReportDegraded false
306 #  QueryStateFS false
307 #</Plugin>
308
309 #<Plugin "bind">
310 #  URL "http://localhost:8053/"
311 #  ParseTime       false
312 #  OpCodes         true
313 #  QTypes          true
314 #
315 #  ServerStats     true
316 #  ZoneMaintStats  true
317 #  ResolverStats   false
318 #  MemoryStats     true
319 #
320 #  <View "_default">
321 #    QTypes        true
322 #    ResolverStats true
323 #    CacheRRSets   true
324 #
325 #    Zone "127.in-addr.arpa/IN"
326 #  </View>
327 #</Plugin>
328
329 #<Plugin ceph>
330 #  LongRunAvgLatency false
331 #  ConvertSpecialMetricTypes true
332 #  <Daemon "osd.0">
333 #    SocketPath "/var/run/ceph/ceph-osd.0.asok"
334 #  </Daemon>
335 #  <Daemon "osd.1">
336 #    SocketPath "/var/run/ceph/ceph-osd.1.asok"
337 #  </Daemon>
338 #  <Daemon "mon.a">
339 #    SocketPath "/var/run/ceph/ceph-mon.ceph1.asok"
340 #  </Daemon>
341 #  <Daemon "mds.a">
342 #    SocketPath "/var/run/ceph/ceph-mds.ceph1.asok"
343 #  </Daemon>
344 #</Plugin>
345
346 #<Plugin chrony>
347 #       Host    "localhost"
348 #       Port    "323"
349 #       Timeout "2"
350 #</Plugin>
351
352 #<Plugin cgroups>
353 #  CGroup "libvirt"
354 #  IgnoreSelected false
355 #</Plugin>
356
357 #<Plugin cpu>
358 #  ReportByCpu true
359 #  ReportByState true
360 #  ValuesPercentage false
361 #</Plugin>
362 #
363 #<Plugin csv>
364 #       DataDir "@localstatedir@/lib/@PACKAGE_NAME@/csv"
365 #       StoreRates false
366 #</Plugin>
367
368 #<Plugin curl>
369 #  <Page "stock_quotes">
370 #    URL "http://finance.google.com/finance?q=NYSE%3AAMD"
371 #    User "foo"
372 #    Password "bar"
373 #    Digest false
374 #    VerifyPeer true
375 #    VerifyHost true
376 #    CACert "/path/to/ca.crt"
377 #    Header "X-Custom-Header: foobar"
378 #    Post "foo=bar"
379 #
380 #    MeasureResponseTime false
381 #    MeasureResponseCode false
382 #    <Match>
383 #      Regex "<span +class=\"pr\"[^>]*> *([0-9]*\\.[0-9]+) *</span>"
384 #      DSType "GaugeAverage"
385 #      Type "stock_value"
386 #      Instance "AMD"
387 #    </Match>
388 #  </Page>
389 #</Plugin>
390
391 #<Plugin curl_json>
392 #  <URL "http://localhost:80/test.json">
393 #    Instance "test_http_json"
394 #    <Key "testArray/0">
395 #      Type "gauge"
396 #      # Expect: 1
397 #    </Key>
398 #    <Key "testArray/1">
399 #      Type "gauge"
400 #      # Expect: 2
401 #    </Key>
402 #    <Key "testArrayInbetween/0/blarg">
403 #      Type "gauge"
404 #      # Expect: 3
405 #    </Key>
406 #    <Key "testArrayInbetween/1/blub">
407 #      Type "gauge"
408 #      # Expect: 4
409 #    </Key>
410 #    <Key "testDirectHit">
411 #      Type "gauge"
412 #      # Expect: 5
413 #    </Key>
414 #    <Key "testSubLevelHit/oneMoreLevel">
415 #      Type "gauge"
416 #      # Expect: 6
417 #    </Key>
418 #  </URL>
419 # put this as test.json on your webserver, the above config demonstraces
420 # how to match them.
421 # {
422 #  "testArray":[1,2],
423 #  "testArrayInbetween":[{"blarg":3},{"blub":4}],
424 #  "testDirectHit":5,
425 #  "testSubLevelHit":{"oneMoreLevel":6}
426 # }
427 ## See: http://wiki.apache.org/couchdb/Runtime_Statistics
428 #  <URL "http://localhost:5984/_stats">
429 #    Instance "httpd"
430 #    <Key "httpd/requests/count">
431 #      Type "http_requests"
432 #    </Key>
433 #
434 #    <Key "httpd_request_methods/*/count">
435 #      Type "http_request_methods"
436 #    </Key>
437 #
438 #    <Key "httpd_status_codes/*/count">
439 #      Type "http_response_codes"
440 #    </Key>
441 #  </URL>
442 ## Database status metrics:
443 #  <URL "http://localhost:5984/_all_dbs">
444 #    Instance "dbs"
445 #    <Key "*/doc_count">
446 #      Type "gauge"
447 #    </Key>
448 #    <Key "*/doc_del_count">
449 #      Type "counter"
450 #    </Key>
451 #    <Key "*/disk_size">
452 #      Type "bytes"
453 #    </Key>
454 #  </URL>
455 #</Plugin>
456
457 #<Plugin curl_xml>
458 #  <URL "http://localhost/stats.xml">
459 #    Host "my_host"
460 #    Instance "some_instance"
461 #    User "collectd"
462 #    Password "thaiNg0I"
463 #    Digest false
464 #    VerifyPeer true
465 #    VerifyHost true
466 #    CACert "/path/to/ca.crt"
467 #    Header "X-Custom-Header: foobar"
468 #    Post "foo=bar"
469 #
470 #    <XPath "table[@id=\"magic_level\"]/tr">
471 #      Type "magic_level"
472 #      #InstancePrefix "prefix-"
473 #      InstanceFrom "td[1]"
474 #      ValuesFrom "td[2]/span[@class=\"level\"]"
475 #    </XPath>
476 #  </URL>
477 #</Plugin>
478
479 #<Plugin dbi>
480 #       <Query "num_of_customers">
481 #               Statement "SELECT 'customers' AS c_key, COUNT(*) AS c_value FROM customers_tbl"
482 #               <Result>
483 #                       Type "gauge"
484 #                       InstancesFrom "c_key"
485 #                       ValuesFrom "c_value"
486 #               </Result>
487 #       </Query>
488 #       <Database "customers_db">
489 #               Driver "mysql"
490 #               DriverOption "host" "localhost"
491 #               DriverOption "username" "collectd"
492 #               DriverOption "password" "AeXohy0O"
493 #               DriverOption "dbname" "custdb0"
494 #               #SelectDB "custdb0"
495 #               Query "num_of_customers"
496 #               #Query "..."
497 #               #Host "..."
498 #       </Database>
499 #</Plugin>
500
501 #<Plugin df>
502 #       Device "/dev/hda1"
503 #       Device "192.168.0.2:/mnt/nfs"
504 #       MountPoint "/home"
505 #       FSType "ext3"
506 #       IgnoreSelected false
507 #       ReportByDevice false
508 #       ReportInodes false
509 #       ValuesAbsolute true
510 #       ValuesPercentage false
511 #</Plugin>
512
513 #<Plugin disk>
514 #       Disk "/^[hs]d[a-f][0-9]?$/"
515 #       IgnoreSelected false
516 #       UseBSDName false
517 #       UdevNameAttr "DEVNAME"
518 #</Plugin>
519
520 #<Plugin dns>
521 #       Interface "eth0"
522 #       IgnoreSource "192.168.0.1"
523 #       SelectNumericQueryTypes true
524 #</Plugin>
525
526 #<Plugin dpdkstat>
527 #       Interval 1
528 #       Coremask "0xf"
529 #       ProcessType "secondary"
530 #       FilePrefix "rte"
531 #       EnabledPortMask 0xffff
532 #       PortName "interface1"
533 #       PortName "interface2"
534 #</Plugin>
535
536 #<Plugin email>
537 #       SocketFile "@localstatedir@/run/@PACKAGE_NAME@-email"
538 #       SocketGroup "collectd"
539 #       SocketPerms "0770"
540 #       MaxConns 5
541 #</Plugin>
542
543 #<Plugin ethstat>
544 #       Interface "eth0"
545 #       Map "rx_csum_offload_errors" "if_rx_errors" "checksum_offload"
546 #       Map "multicast" "if_multicast"
547 #       MappedOnly false
548 #</Plugin>
549
550 #<Plugin exec>
551 #       Exec "user:group" "/path/to/exec"
552 #       NotificationExec "user:group" "/path/to/exec"
553 #</Plugin>
554
555 #<Plugin fhcount>
556 #       ValuesAbsolute true
557 #       ValuesPercentage false
558 #</Plugin>
559
560 #<Plugin filecount>
561 #       <Directory "/path/to/dir">
562 #               Instance "foodir"
563 #               Name "*.conf"
564 #               MTime "-5m"
565 #               Size "+10k"
566 #               Recursive true
567 #               IncludeHidden false
568 #       </Directory>
569 #</Plugin>
570
571 #<Plugin gmond>
572 #  MCReceiveFrom "239.2.11.71" "8649"
573 #  <Metric "swap_total">
574 #    Type "swap"
575 #    TypeInstance "total"
576 #    DataSource "value"
577 #  </Metric>
578 #  <Metric "swap_free">
579 #    Type "swap"
580 #    TypeInstance "free"
581 #    DataSource "value"
582 #  </Metric>
583 #</Plugin>
584
585 #<Plugin gps>
586 #  Host "127.0.0.1"
587 #  Port "2947"
588 #  Timeout 0.015
589 #  PauseConnect 5
590 #</Plugin>
591
592 #<Plugin grpc>
593 #       <Server "example.com" "50051">
594 #               EnableSSL true
595 #               SSLCACertificateFile "/path/to/root.pem"
596 #               SSLCertificateFile "/path/to/server.pem"
597 #               SSLCertificateKeyFile "/path/to/server.key"
598 #       </Server>
599 #       <Listen "0.0.0.0" "50051">
600 #               EnableSSL true
601 #               SSLCACertificateFile "/path/to/root.pem"
602 #               SSLCertificateFile "/path/to/client.pem"
603 #               SSLCertificateKeyFile "/path/to/client.key"
604 #       </Listen>
605 #</Plugin>
606
607 #<Plugin hddtemp>
608 #  Host "127.0.0.1"
609 #  Port "7634"
610 #</Plugin>
611
612 #<Plugin hugepages>
613 #    ReportPerNodeHP  true
614 #    ReportRootHP     true
615 #    ValuesPages      true
616 #    ValuesBytes      false
617 #    ValuesPercentage false
618 #</Plugin>
619
620 #<Plugin "intel_rdt">
621 #  Cores "0-2"
622 #</Plugin>
623
624 #<Plugin interface>
625 #       Interface "eth0"
626 #       IgnoreSelected false
627 #       ReportInactive true
628 #       UniqueName false
629 #</Plugin>
630
631 #<Plugin ipmi>
632 #       Sensor "some_sensor"
633 #       Sensor "another_one"
634 #       IgnoreSelected false
635 #       NotifySensorAdd false
636 #       NotifySensorRemove true
637 #       NotifySensorNotPresent false
638 #</Plugin>
639
640 #<Plugin iptables>
641 #       Chain table chain
642 #       Chain6 table chain
643 #</Plugin>
644
645 #<Plugin irq>
646 #       Irq 7
647 #       Irq 8
648 #       Irq 9
649 #       IgnoreSelected true
650 #</Plugin>
651
652 #<Plugin java>
653 #       JVMArg "-verbose:jni"
654 #       JVMArg "-Djava.class.path=@prefix@/share/collectd/java/collectd-api.jar"
655 #
656 #       LoadPlugin "org.collectd.java.Foobar"
657 #       <Plugin "org.collectd.java.Foobar">
658 #         # To be parsed by the plugin
659 #       </Plugin>
660 #</Plugin>
661
662 #<Plugin load>
663 #        ReportRelative true
664 #</Plugin>
665
666 #<Plugin lpar>
667 #       CpuPoolStats   false
668 #       ReportBySerial false
669 #</Plugin>
670
671 #<Plugin lua>
672 #       BasePath "@prefix@/share/@PACKAGE_NAME@/lua"
673 #       Script "script1.lua"
674 #       Script "script2.lua"
675 #</Plugin>
676
677 #<Plugin madwifi>
678 #       Interface "wlan0"
679 #       IgnoreSelected false
680 #       Source "SysFS"
681 #       WatchSet "None"
682 #       WatchAdd "node_octets"
683 #       WatchAdd "node_rssi"
684 #       WatchAdd "is_rx_acl"
685 #       WatchAdd "is_scan_active"
686 #</Plugin>
687
688 #<Plugin mbmon>
689 #       Host "127.0.0.1"
690 #       Port "411"
691 #</Plugin>
692
693 #<Plugin md>
694 #       Device "/dev/md0"
695 #       IgnoreSelected false
696 #</Plugin>
697
698 #<Plugin memcachec>
699 #       <Page "plugin_instance">
700 #               Server "localhost"
701 #               Key "page_key"
702 #               <Match>
703 #                       Regex "(\\d+) bytes sent"
704 #                       ExcludeRegex "<lines to be excluded>"
705 #                       DSType CounterAdd
706 #                       Type "ipt_octets"
707 #                       Instance "type_instance"
708 #               </Match>
709 #       </Page>
710 #</Plugin>
711
712 #<Plugin memcached>
713 #       <Instance "local">
714 #               #Host "memcache.example.com"
715 #               Address "127.0.0.1"
716 #               Port "11211"
717 #       </Instance>
718 #</Plugin>
719
720 #<Plugin memory>
721 #       ValuesAbsolute true
722 #       ValuesPercentage false
723 #</Plugin>
724
725 #<Plugin modbus>
726 #       <Data "data_name">
727 #               RegisterBase 1234
728 #               RegisterCmd ReadHolding
729 #               RegisterType float
730 #               Type gauge
731 #               Instance "..."
732 #       </Data>
733 #
734 #       <Host "name">
735 #               Address "addr"
736 #               Port "1234"
737 #               Interval 60
738 #
739 #               <Slave 1>
740 #                       Instance "foobar" # optional
741 #                       Collect "data_name"
742 #               </Slave>
743 #       </Host>
744 #</Plugin>
745
746 #<Plugin mqtt>
747 #       <Publish "name">
748 #               Host "localhost"
749 #               Port 1883
750 #               ClientId "localhost"
751 #               User "user"
752 #               Password "secret"
753 #               QoS 0
754 #               Prefix "collectd"
755 #               StoreRates true
756 #               Retain false
757 #               CACert "/etc/ssl/ca.crt"
758 #               CertificateFile "/etc/ssl/client.crt"
759 #               CertificateKeyFile "/etc/ssl/client.pem"
760 #               TLSProtocol "tlsv1.2"
761 #               CipherSuite "ciphers"
762 #       </Publish>
763 #       <Subscribe "name">
764 #               Host "localhost"
765 #               Port 1883
766 #               ClientId "localhost"
767 #               User "user"
768 #               Password "secret"
769 #               QoS 2
770 #               Topic "collectd/#"
771 #               CleanSession true
772 #       </Subscribe>
773 #</Plugin>
774
775 #<Plugin mysql>
776 #       <Database db_name>
777 #               Host "database.serv.er"
778 #               User "db_user"
779 #               Password "secret"
780 #               Database "db_name"
781 #               SSLKey "/path/to/key.pem"
782 #               SSLCert "/path/to/cert.pem"
783 #               SSLCA "/path/to/ca.pem"
784 #               SSLCAPath "/path/to/cas/"
785 #               SSLCipher "DHE-RSA-AES256-SHA"
786 #               MasterStats true
787 #               ConnectTimeout 10
788 #               InnodbStats true
789 #       </Database>
790 #
791 #       <Database db_name2>
792 #               Alias "squeeze"
793 #               Host "localhost"
794 #               Socket "/var/run/mysql/mysqld.sock"
795 #               SlaveStats true
796 #               SlaveNotifications true
797 #       </Database>
798 #       <Database galera>
799 #               Alias "galera"
800 #               Host "localhost"
801 #               Socket "/var/run/mysql/mysqld.sock"
802 #               WsrepStats true
803 #       </Database>
804 #</Plugin>
805
806 #<Plugin netapp>
807 #       <Host "netapp1.example.com">
808 #               Protocol      "https"
809 #               Address       "10.0.0.1"
810 #               Port          443
811 #               User          "username"
812 #               Password      "aef4Aebe"
813 #               Interval      30
814 #
815 #               <WAFL>
816 #                       Interval 30
817 #                       GetNameCache   true
818 #                       GetDirCache    true
819 #                       GetBufferCache true
820 #                       GetInodeCache  true
821 #               </WAFL>
822 #
823 #               <Disks>
824 #                       Interval 30
825 #                       GetBusy true
826 #               </Disks>
827 #
828 #               <VolumePerf>
829 #                       Interval 30
830 #                       GetIO      "volume0"
831 #                       IgnoreSelectedIO      false
832 #                       GetOps     "volume0"
833 #                       IgnoreSelectedOps     false
834 #                       GetLatency "volume0"
835 #                       IgnoreSelectedLatency false
836 #               </VolumePerf>
837 #
838 #               <VolumeUsage>
839 #                       Interval 30
840 #                       GetCapacity "vol0"
841 #                       GetCapacity "vol1"
842 #                       IgnoreSelectedCapacity false
843 #                       GetSnapshot "vol1"
844 #                       GetSnapshot "vol3"
845 #                       IgnoreSelectedSnapshot false
846 #               </VolumeUsage>
847 #
848 #               <System>
849 #                       Interval 30
850 #                       GetCPULoad     true
851 #                       GetInterfaces  true
852 #                       GetDiskOps     true
853 #                       GetDiskIO      true
854 #               </System>
855 #       </Host>
856 #</Plugin>
857
858 #<Plugin netlink>
859 #       Interface "All"
860 #       VerboseInterface "All"
861 #       QDisc "eth0" "pfifo_fast-1:0"
862 #       Class "ppp0" "htb-1:10"
863 #       Filter "ppp0" "u32-1:0"
864 #       IgnoreSelected false
865 #</Plugin>
866
867 @LOAD_PLUGIN_NETWORK@<Plugin network>
868 #       # client setup:
869 @LOAD_PLUGIN_NETWORK@   Server "ff18::efc0:4a42" "25826"
870 @LOAD_PLUGIN_NETWORK@   <Server "239.192.74.66" "25826">
871 #               SecurityLevel Encrypt
872 #               Username "user"
873 #               Password "secret"
874 #               Interface "eth0"
875 #               ResolveInterval 14400
876 @LOAD_PLUGIN_NETWORK@   </Server>
877 #       TimeToLive 128
878 #
879 #       # server setup:
880 #       Listen "ff18::efc0:4a42" "25826"
881 #       <Listen "239.192.74.66" "25826">
882 #               SecurityLevel Sign
883 #               AuthFile "/etc/collectd/passwd"
884 #               Interface "eth0"
885 #       </Listen>
886 #       MaxPacketSize 1452
887 #
888 #       # proxy setup (client and server as above):
889 #       Forward true
890 #
891 #       # statistics about the network plugin itself
892 #       ReportStats false
893 #
894 #       # "garbage collection"
895 #       CacheFlush 1800
896 @LOAD_PLUGIN_NETWORK@</Plugin>
897
898 #<Plugin nginx>
899 #       URL "http://localhost/status?auto"
900 #       User "www-user"
901 #       Password "secret"
902 #       CACert "/etc/ssl/ca.crt"
903 #</Plugin>
904
905 #<Plugin notify_desktop>
906 #       OkayTimeout 1000
907 #       WarningTimeout 5000
908 #       FailureTimeout 0
909 #</Plugin>
910
911 #<Plugin notify_email>
912 #       SMTPServer "localhost"
913 #       SMTPPort 25
914 #       SMTPUser "my-username"
915 #       SMTPPassword "my-password"
916 #       From "collectd@main0server.com"
917 #       # <WARNING/FAILURE/OK> on <hostname>. beware! do not use not more than two %s in this string!!!
918 #       Subject "Aaaaaa!! %s on %s!!!!!"
919 #       Recipient "email1@domain1.net"
920 #       Recipient "email2@domain2.com"
921 #</Plugin>
922
923 #<Plugin notify_nagios>
924 #       CommandFile "/usr/local/nagios/var/rw/nagios.cmd"
925 #</Plugin>
926
927 #<Plugin ntpd>
928 #       Host "localhost"
929 #       Port 123
930 #       ReverseLookups false
931 #       IncludeUnitID true
932 #</Plugin>
933
934 #<Plugin nut>
935 #       UPS "upsname@hostname:port"
936 #</Plugin>
937
938 #<Plugin olsrd>
939 #       Host "127.0.0.1"
940 #       Port "2006"
941 #       CollectLinks "Summary"
942 #       CollectRoutes "Summary"
943 #       CollectTopology "Summary"
944 #</Plugin>
945
946 #<Plugin onewire>
947 #       Device "-s localhost:4304"
948 #       Sensor "F10FCA000800"
949 #       IgnoreSelected false
950 #</Plugin>
951
952 #<Plugin openldap>
953 #  <Instance "localhost">
954 #    URL "ldap://localhost:389"
955 #    StartTLS false
956 #    VerifyHost true
957 #    CACert "/path/to/ca.crt"
958 #    Timeout -1
959 #    Version 3
960 #  </Instance>
961 #</Plugin>
962
963 #<Plugin openvpn>
964 #       StatusFile "/etc/openvpn/openvpn-status.log"
965 #       ImprovedNamingSchema false
966 #       CollectCompression true
967 #       CollectIndividualUsers true
968 #       CollectUserCount false
969 #</Plugin>
970
971 #<Plugin oracle>
972 #  <Query "out_of_stock">
973 #    Statement "SELECT category, COUNT(*) AS value FROM products WHERE in_stock = 0 GROUP BY category"
974 #    <Result>
975 #      Type "gauge"
976 #      InstancesFrom "category"
977 #      ValuesFrom "value"
978 #    </Result>
979 #  </Query>
980 #  <Database "product_information">
981 #    ConnectID "db01"
982 #    Username "oracle"
983 #    Password "secret"
984 #    Query "out_of_stock"
985 #  </Database>
986 #</Plugin>
987
988 #<Plugin perl>
989 #       IncludeDir "/my/include/path"
990 #       BaseName "Collectd::Plugins"
991 #       EnableDebugger ""
992 #       LoadPlugin Monitorus
993 #       LoadPlugin OpenVZ
994 #
995 #       <Plugin foo>
996 #               Foo "Bar"
997 #               Qux "Baz"
998 #       </Plugin>
999 #</Plugin>
1000
1001 #<Plugin pinba>
1002 #       Address "::0"
1003 #       Port "30002"
1004 #       <View "name">
1005 #               Host "host name"
1006 #               Server "server name"
1007 #               Script "script name"
1008 #       </View>
1009 #</Plugin>
1010
1011 #<Plugin ping>
1012 #       Host "host.foo.bar"
1013 #       Interval 1.0
1014 #       Timeout 0.9
1015 #       TTL 255
1016 #       SourceAddress "1.2.3.4"
1017 #       Device "eth0"
1018 #       MaxMissed -1
1019 #</Plugin>
1020
1021 #<Plugin postgresql>
1022 #       <Query magic>
1023 #               Statement "SELECT magic FROM wizard WHERE host = $1;"
1024 #               Param hostname
1025 #               <Result>
1026 #                       Type gauge
1027 #                       InstancePrefix "magic"
1028 #                       ValuesFrom magic
1029 #               </Result>
1030 #       </Query>
1031 #       <Query rt36_tickets>
1032 #               Statement "SELECT COUNT(type) AS count, type \
1033 #                                 FROM (SELECT CASE \
1034 #                                              WHEN resolved = 'epoch' THEN 'open' \
1035 #                                              ELSE 'resolved' END AS type \
1036 #                                              FROM tickets) type \
1037 #                                 GROUP BY type;"
1038 #               <Result>
1039 #                       Type counter
1040 #                       InstancePrefix "rt36_tickets"
1041 #                       InstancesFrom "type"
1042 #                       ValuesFrom "count"
1043 #               </Result>
1044 #       </Query>
1045 #       <Writer sqlstore>
1046 #               # See contrib/postgresql/collectd_insert.sql for details
1047 #               Statement "SELECT collectd_insert($1, $2, $3, $4, $5, $6, $7, $8, $9);"
1048 #               StoreRates true
1049 #       </Writer>
1050 #       <Database foo>
1051 #               Host "hostname"
1052 #               Port "5432"
1053 #               User "username"
1054 #               Password "secret"
1055 #               SSLMode "prefer"
1056 #               KRBSrvName "kerberos_service_name"
1057 #               Query magic
1058 #       </Database>
1059 #       <Database bar>
1060 #               Interval 60
1061 #               Service "service_name"
1062 #               Query backend # predefined
1063 #               Query rt36_tickets
1064 #       </Database>
1065 #       <Database qux>
1066 #               Service "collectd_store"
1067 #               Writer sqlstore
1068 #               # see collectd.conf(5) for details
1069 #               CommitInterval 30
1070 #       </Database>
1071 #</Plugin>
1072
1073 #<Plugin powerdns>
1074 #  <Server "server_name">
1075 #    Collect "latency"
1076 #    Collect "udp-answers" "udp-queries"
1077 #    Socket "/var/run/pdns.controlsocket"
1078 #  </Server>
1079 #  <Recursor "recursor_name">
1080 #    Collect "questions"
1081 #    Collect "cache-hits" "cache-misses"
1082 #    Socket "/var/run/pdns_recursor.controlsocket"
1083 #  </Recursor>
1084 #  LocalSocket "/opt/collectd/var/run/collectd-powerdns"
1085 #</Plugin>
1086
1087 #<Plugin processes>
1088 #       Process "name"
1089 #</Plugin>
1090
1091 #<Plugin protocols>
1092 #       Value "/^Tcp:/"
1093 #       IgnoreSelected false
1094 #</Plugin>
1095
1096 #<Plugin python>
1097 #       ModulePath "/path/to/your/python/modules"
1098 #       LogTraces true
1099 #       Interactive true
1100 #       Import "spam"
1101 #
1102 #       <Module spam>
1103 #               spam "wonderful" "lovely"
1104 #       </Module>
1105 #</Plugin>
1106
1107 #<Plugin redis>
1108 #   <Node example>
1109 #      Host "redis.example.com"
1110 #      Port "6379"
1111 #      Timeout 2000
1112 #   </Node>
1113 #</Plugin>
1114
1115 #<Plugin routeros>
1116 #       <Router>
1117 #               Host "router.example.com"
1118 #               Port "8728"
1119 #               User "admin"
1120 #               Password "dozaiTh4"
1121 #               CollectInterface true
1122 #               CollectRegistrationTable true
1123 #               CollectCPULoad true
1124 #               CollectMemory true
1125 #               CollectDF true
1126 #               CollectDisk true
1127 #       </Router>
1128 #</Plugin>
1129
1130 #<Plugin rrdcached>
1131 #       DaemonAddress "unix:/tmp/rrdcached.sock"
1132 #       DataDir "@localstatedir@/lib/@PACKAGE_NAME@/rrd"
1133 #       CreateFiles true
1134 #       CreateFilesAsync false
1135 #       CollectStatistics true
1136 #</Plugin>
1137
1138 #<Plugin rrdtool>
1139 #       DataDir "@localstatedir@/lib/@PACKAGE_NAME@/rrd"
1140 #       CreateFilesAsync false
1141 #       CacheTimeout 120
1142 #       CacheFlush   900
1143 #       WritesPerSecond 50
1144 #</Plugin>
1145
1146 #<Plugin sensors>
1147 #       SensorConfigFile "/etc/sensors.conf"
1148 #       Sensor "it8712-isa-0290/temperature-temp1"
1149 #       Sensor "it8712-isa-0290/fanspeed-fan3"
1150 #       Sensor "it8712-isa-0290/voltage-in8"
1151 #       IgnoreSelected false
1152 #</Plugin>
1153
1154 #<Plugin sigrok>
1155 #  LogLevel 3
1156 #  <Device "AC Voltage">
1157 #    Driver "fluke-dmm"
1158 #    MinimumInterval 10
1159 #    Conn "/dev/ttyUSB2"
1160 #  </Device>
1161 #  <Device "Sound Level">
1162 #    Driver "cem-dt-885x"
1163 #    Conn "/dev/ttyUSB1"
1164 #  </Device>
1165 #</Plugin>
1166
1167 #<Plugin smart>
1168 #  Disk "/^[hs]d[a-f][0-9]?$/"
1169 #  IgnoreSelected false
1170 #</Plugin>
1171
1172 #<Plugin snmp>
1173 #   <Data "powerplus_voltge_input">
1174 #       Type "voltage"
1175 #       Table false
1176 #       Instance "input_line1"
1177 #       Values "SNMPv2-SMI::enterprises.6050.5.4.1.1.2.1"
1178 #   </Data>
1179 #   <Data "hr_users">
1180 #       Type "users"
1181 #       Table false
1182 #       Instance ""
1183 #       Values "HOST-RESOURCES-MIB::hrSystemNumUsers.0"
1184 #   </Data>
1185 #   <Data "std_traffic">
1186 #       Type "if_octets"
1187 #       Table true
1188 #       Instance "IF-MIB::ifDescr"
1189 #       Values "IF-MIB::ifInOctets" "IF-MIB::ifOutOctets"
1190 #   </Data>
1191 #
1192 #   <Host "some.switch.mydomain.org">
1193 #       Address "192.168.0.2"
1194 #       Version 1
1195 #       Community "community_string"
1196 #       Collect "std_traffic"
1197 #       Interval 120
1198 #   </Host>
1199 #   <Host "some.server.mydomain.org">
1200 #       Address "192.168.0.42"
1201 #       Version 2
1202 #       Community "another_string"
1203 #       Collect "std_traffic" "hr_users"
1204 #   </Host>
1205 #   <Host "some.ups.mydomain.org">
1206 #       Address "192.168.0.3"
1207 #       Version 1
1208 #       Community "more_communities"
1209 #       Collect "powerplus_voltge_input"
1210 #       Interval 300
1211 #   </Host>
1212 #</Plugin>
1213
1214 #<Plugin statsd>
1215 #  Host "::"
1216 #  Port "8125"
1217 #  DeleteCounters false
1218 #  DeleteTimers   false
1219 #  DeleteGauges   false
1220 #  DeleteSets     false
1221 #  CounterSum     false
1222 #  TimerPercentile 90.0
1223 #  TimerPercentile 95.0
1224 #  TimerPercentile 99.0
1225 #  TimerLower     false
1226 #  TimerUpper     false
1227 #  TimerSum       false
1228 #  TimerCount     false
1229 #</Plugin>
1230
1231 #<Plugin swap>
1232 #       ReportByDevice false
1233 #       ReportBytes true
1234 #       ValuesAbsolute true
1235 #       ValuesPercentage false
1236 #</Plugin>
1237
1238 #<Plugin table>
1239 #       <Table "/proc/slabinfo">
1240 #               Instance "slabinfo"
1241 #               Separator " "
1242 #               <Result>
1243 #                       Type gauge
1244 #                       InstancePrefix "active_objs"
1245 #                       InstancesFrom 0
1246 #                       ValuesFrom 1
1247 #               </Result>
1248 #               <Result>
1249 #                       Type gauge
1250 #                       InstancePrefix "objperslab"
1251 #                       InstancesFrom 0
1252 #                       ValuesFrom 4
1253 #               </Result>
1254 #       </Table>
1255 #</Plugin>
1256
1257 #<Plugin tail>
1258 #  <File "/var/log/exim4/mainlog">
1259 #    Instance "exim"
1260 #    Interval 60
1261 #    <Match>
1262 #      Regex "S=([1-9][0-9]*)"
1263 #      DSType "CounterAdd"
1264 #      Type "ipt_bytes"
1265 #      Instance "total"
1266 #    </Match>
1267 #    <Match>
1268 #      Regex "\\<R=local_user\\>"
1269 #      ExcludeRegex "\\<R=local_user\\>.*mail_spool defer"
1270 #      DSType "CounterInc"
1271 #      Type "counter"
1272 #      Instance "local_user"
1273 #    </Match>
1274 #  </File>
1275 #  <File "/var/log/nginx/apache-time.log">
1276 #    #Use the following log format in nginx:
1277 #    #log_format response_time '[$host] "$upstream_response_time" ...'
1278 #    Instance "apache"
1279 #    <Match>
1280 #      Regex "^\\S+ \"([0-9.]+)\""
1281 #      <DSType Distribution>
1282 #        Percentile 80    # -> latency-foo-80
1283 #        Percentile 95    # -> latency-foo-95
1284 #        Percentile 99    # -> latency-foo-99
1285 #        Bucket 0   0.1   # -> bucket-latency-foo-0_0.1
1286 #        Bucket 0.1 0.2   # -> bucket-latency-foo-0.1_0.2
1287 #        Bucket 0.2 0.5   # -> bucket-latency-foo-0.2_0.5
1288 #        Bucket 0.5 1.0   # -> bucket-latency-foo-0.5_1
1289 #        Bucket 1.0 2.0   # -> bucket-latency-foo-1_2
1290 #        Bucket 2.0 0     # -> bucket-latency-foo-2_inf
1291 #      </DSType>
1292 #      Type "latency"
1293 #      Instance "foo"
1294 #    </Match>
1295 #  </File>
1296 #</Plugin>
1297
1298 #<Plugin tail_csv>
1299 #   <Metric "dropped">
1300 #       Type "percent"
1301 #       Instance "dropped"
1302 #       ValueFrom 1
1303 #   </Metric>
1304 #   <Metric "mbps">
1305 #       Type "bytes"
1306 #       Instance "wire-realtime"
1307 #       ValueFrom 2
1308 #   </Metric>
1309 #   <Metric "alerts">
1310 #       Type "alerts_per_second"
1311 #       ValueFrom 3
1312 #   </Metric>
1313 #   <Metric "kpps">
1314 #       Type "kpackets_wire_per_sec.realtime"
1315 #       ValueFrom 4
1316 #   </Metric>
1317 #   <File "/var/log/snort/snort.stats">
1318 #       Instance "snort-eth0"
1319 #       Interval 600
1320 #       Collect "dropped" "mbps" "alerts" "kpps"
1321 #       TimeFrom 0
1322 #   </File>
1323 #</Plugin>
1324
1325 #<Plugin tcpconns>
1326 #       ListeningPorts false
1327 #       AllPortsSummary false
1328 #       LocalPort "25"
1329 #       RemotePort "25"
1330 #</Plugin>
1331
1332 #<Plugin teamspeak2>
1333 #       Host "127.0.0.1"
1334 #       Port "51234"
1335 #       Server "8767"
1336 #</Plugin>
1337
1338 #<Plugin ted>
1339 #       Device "/dev/ttyUSB0"
1340 #       Retries 0
1341 #</Plugin>
1342
1343 #<Plugin thermal>
1344 #       ForceUseProcfs false
1345 #       Device "THRM"
1346 #       IgnoreSelected false
1347 #</Plugin>
1348
1349 #<Plugin tokyotyrant>
1350 #       Host "localhost"
1351 #       Port "1978"
1352 #</Plugin>
1353
1354 #<Plugin turbostat>
1355 ##      None of the following option should be set manually
1356 ##      This plugin automatically detect most optimal options
1357 ##      Only set values here if:
1358 ##      - The module asks you to
1359 ##      - You want to disable the collection of some data
1360 ##      - Your (Intel) CPU is not supported (yet) by the module
1361 ##      - The module generates a lot of errors 'MSR offset 0x... read failed'
1362 ##      In the last two cases, please open a bug request
1363 #
1364 #       TCCActivationTemp "100"
1365 #       CoreCstates "392"
1366 #       PackageCstates "396"
1367 #       SystemManagementInterrupt true
1368 #       DigitalTemperatureSensor true
1369 #       PackageThermalManagement true
1370 #       RunningAveragePowerLimit "7"    
1371 #</Plugin>
1372
1373 #<Plugin unixsock>
1374 #       SocketFile "@prefix@/var/run/@PACKAGE_NAME@-unixsock"
1375 #       SocketGroup "collectd"
1376 #       SocketPerms "0660"
1377 #       DeleteSocket false
1378 #</Plugin>
1379
1380 #<Plugin uuid>
1381 #       UUIDFile "/etc/uuid"
1382 #</Plugin>
1383
1384 #<Plugin mic>
1385 #   ShowCPU true
1386 #   ShowCPUCores true
1387 #   ShowMemory true
1388 #   ShowTemperatures true
1389 ##  Temperature Sensors can be ignored/shown by repeated #Temperature lines, and
1390 ##  then inverted with a IgnoreSelectedTemperature.
1391 ##  Known Temperature sensors: die, devmem, fin, fout, vccp, vddg, vddq
1392 #   Temperature vddg
1393 #   IgnoreSelectedTemperature true
1394 #   ShowPower true
1395 ##  Power Sensors can be ignored/shown by repeated #Power lines, and
1396 ##  then inverted with a IgnoreSelectedTemperature.
1397 ##  Known Temperature sensors: total0, total1, inst, imax, pci3, c2x3, c2x4, vccp, vddg, vddq
1398 #   Power total1
1399 #   IgnoreSelectedPower true
1400 #</Plugin>
1401
1402 #<Plugin varnish>
1403 #   This tag support an argument if you want to
1404 #   monitor the local instance just use </Instance>
1405 #   If you prefer defining another instance you can do
1406 #   so by using <Instance "myinstance">
1407 #   <Instance>
1408 #      CollectBackend true
1409 #      CollectBan false           # Varnish 3 and above
1410 #      CollectCache true
1411 #      CollectConnections true
1412 #      CollectDirectorDNS false   # Varnish 3 only
1413 #      CollectESI false
1414 #      CollectFetch false
1415 #      CollectHCB false
1416 #      CollectObjects false
1417 #      CollectPurge false         # Varnish 2 only
1418 #      CollectSession false
1419 #      CollectSHM true
1420 #      CollectSMA false           # Varnish 2 only
1421 #      CollectSMS false
1422 #      CollectSM false            # Varnish 2 only
1423 #      CollectStruct false
1424 #      CollectTotals false
1425 #      CollectUptime false        # Varnish 3 and above
1426 #      CollectVCL false
1427 #      CollectVSM false           # Varnish 4 only
1428 #      CollectWorkers false
1429 #   </Instance>
1430 #</Plugin>
1431
1432 #<Plugin virt>
1433 #       Connection "xen:///"
1434 #       RefreshInterval 60
1435 #       Domain "name"
1436 #       BlockDevice "name:device"
1437 #       BlockDeviceFormat target
1438 #       BlockDeviceFormatBasename false
1439 #       InterfaceDevice "name:device"
1440 #       IgnoreSelected false
1441 #       HostnameFormat name
1442 #       InterfaceFormat name
1443 #       PluginInstanceFormat name
1444 #</Plugin>
1445
1446 #<Plugin vmem>
1447 #       Verbose false
1448 #</Plugin>
1449
1450 #<Plugin write_graphite>
1451 #  <Node "example">
1452 #    Host "localhost"
1453 #    Port "2003"
1454 #    Protocol "tcp"
1455 #    ReconnectInterval 0
1456 #    LogSendErrors true
1457 #    Prefix "collectd"
1458 #    Postfix "collectd"
1459 #    StoreRates true
1460 #    AlwaysAppendDS false
1461 #    EscapeCharacter "_"
1462 #    SeparateInstances false
1463 #    PreserveSeparator false
1464 #    DropDuplicateFields false
1465 #  </Node>
1466 #</Plugin>
1467
1468 #<Plugin write_http>
1469 #       <Node "example">
1470 #               URL "http://example.com/collectd-post"
1471 #               User "collectd"
1472 #               Password "weCh3ik0"
1473 #               VerifyPeer true
1474 #               VerifyHost true
1475 #               CACert "/etc/ssl/ca.crt"
1476 #               CAPath "/etc/ssl/certs/"
1477 #               ClientKey "/etc/ssl/client.pem"
1478 #               ClientCert "/etc/ssl/client.crt"
1479 #               ClientKeyPass "secret"
1480 #               Header "X-Custom-Header: custom_value"
1481 #               SSLVersion "TLSv1"
1482 #               Format "Command"
1483 #               Metrics true
1484 #               Notifications false
1485 #               StoreRates false
1486 #               BufferSize 4096
1487 #               LowSpeedLimit 0
1488 #               Timeout 0
1489 #       </Node>
1490 #</Plugin>
1491
1492 #<Plugin write_kafka>
1493 #  Property "metadata.broker.list" "localhost:9092"
1494 #  <Topic "collectd">
1495 #    Format JSON
1496 #  </Topic>
1497 #</Plugin>
1498
1499 #<Plugin write_mongodb>
1500 #       <Node "example">
1501 #               Host "localhost"
1502 #               Port "27017"
1503 #               Timeout 1000
1504 #               StoreRates false
1505 #               Database "auth_db"
1506 #               User "auth_user"
1507 #               Password "auth_passwd"
1508 #       </Node>
1509 #</Plugin>
1510
1511 #<Plugin write_prometheus>
1512 #       Port "9103"
1513 #</Plugin>
1514
1515 #<Plugin write_redis>
1516 #       <Node "example">
1517 #               Host "localhost"
1518 #               Port "6379"
1519 #               Timeout 1000
1520 #               Prefix "collectd/"
1521 #       </Node>
1522 #</Plugin>
1523
1524 #<Plugin write_riemann>
1525 #       <Node "example">
1526 #               Host "localhost"
1527 #               Port 5555
1528 #               Protocol TCP
1529 #               Batch true
1530 #               BatchMaxSize 8192
1531 #               StoreRates true
1532 #               AlwaysAppendDS false
1533 #               TTLFactor 2.0
1534 #               Notifications true
1535 #               CheckThresholds false
1536 #               EventServicePrefix ""
1537 #       </Node>
1538 #       Tag "foobar"
1539 #       Attribute "foo" "bar"
1540 #</Plugin>
1541
1542 #<Plugin write_sensu>
1543 #       <Node "example">
1544 #               Host "localhost"
1545 #               Port 3030
1546 #               StoreRates true
1547 #               AlwaysAppendDS false
1548 #               Notifications true
1549 #               Metrics true
1550 #               EventServicePrefix ""
1551 #               MetricHandler "influx"
1552 #               MetricHandler "default"
1553 #               NotificationHandler "flapjack"
1554 #               NotificationHandler "howling_monkey"
1555 #       </Node>
1556 #       Tag "foobar"
1557 #       Attribute "foo" "bar"
1558 #</Plugin>
1559
1560 #<Plugin write_tsdb>
1561 #       <Node>
1562 #               Host "localhost"
1563 #               Port "4242"
1564 #               HostTags "status=production"
1565 #               StoreRates false
1566 #               AlwaysAppendDS false
1567 #       </Node>
1568 #</Plugin>
1569
1570 #<Plugin zookeeper>
1571 #    Host "localhost"
1572 #    Port "2181"
1573 #</Plugin>
1574
1575 ##############################################################################
1576 # Filter configuration                                                       #
1577 #----------------------------------------------------------------------------#
1578 # The following configures collectd's filtering mechanism. Before changing   #
1579 # anything in this section, please read the `FILTER CONFIGURATION' section   #
1580 # in the collectd.conf(5) manual page.                                       #
1581 ##############################################################################
1582
1583 # Load required matches:
1584 #@BUILD_PLUGIN_MATCH_EMPTY_COUNTER_TRUE@LoadPlugin match_empty_counter
1585 #@BUILD_PLUGIN_MATCH_HASHED_TRUE@LoadPlugin match_hashed
1586 #@BUILD_PLUGIN_MATCH_REGEX_TRUE@LoadPlugin match_regex
1587 #@BUILD_PLUGIN_MATCH_VALUE_TRUE@LoadPlugin match_value
1588 #@BUILD_PLUGIN_MATCH_TIMEDIFF_TRUE@LoadPlugin match_timediff
1589
1590 # Load required targets:
1591 #@BUILD_PLUGIN_TARGET_NOTIFICATION_TRUE@LoadPlugin target_notification
1592 #@BUILD_PLUGIN_TARGET_REPLACE_TRUE@LoadPlugin target_replace
1593 #@BUILD_PLUGIN_TARGET_SCALE_TRUE@LoadPlugin target_scale
1594 #@BUILD_PLUGIN_TARGET_SET_TRUE@LoadPlugin target_set
1595 #@BUILD_PLUGIN_TARGET_V5UPGRADE_TRUE@LoadPlugin target_v5upgrade
1596
1597 #----------------------------------------------------------------------------#
1598 # The following block demonstrates the default behavior if no filtering is   #
1599 # configured at all: All values will be sent to all available write plugins. #
1600 #----------------------------------------------------------------------------#
1601
1602 #<Chain "PostCache">
1603 #  Target "write"
1604 #</Chain>
1605
1606 ##############################################################################
1607 # Threshold configuration                                                    #
1608 #----------------------------------------------------------------------------#
1609 # The following outlines how to configure collectd's threshold checking      #
1610 # plugin. The plugin and possible configuration options are documented in    #
1611 # the collectd-threshold(5) manual page.                                     #
1612 ##############################################################################
1613
1614 #@BUILD_PLUGIN_THRESHOLD_TRUE@LoadPlugin "threshold"
1615 #<Plugin threshold>
1616 #  <Type "foo">
1617 #    WarningMin    0.00
1618 #    WarningMax 1000.00
1619 #    FailureMin    0.00
1620 #    FailureMax 1200.00
1621 #    Invert false
1622 #    Instance "bar"
1623 #  </Type>
1624 #
1625 #  <Plugin "interface">
1626 #    Instance "eth0"
1627 #    <Type "if_octets">
1628 #      FailureMax 10000000
1629 #      DataSource "rx"
1630 #    </Type>
1631 #  </Plugin>
1632 #
1633 #  <Host "hostname">
1634 #    <Type "cpu">
1635 #      Instance "idle"
1636 #      FailureMin 10
1637 #    </Type>
1638 #
1639 #    <Plugin "memory">
1640 #      <Type "memory">
1641 #        Instance "cached"
1642 #        WarningMin 100000000
1643 #      </Type>
1644 #    </Plugin>
1645 #
1646 #    <Type "load">
1647 #       DataSource "midterm"
1648 #       FailureMax 4
1649 #       Hits 3
1650 #       Hysteresis 3
1651 #    </Type>
1652 #  </Host>
1653 #</Plugin>