Merge pull request #2631 from DanCech/tagged-carbon
[collectd.git] / src / collectd.conf.pod
1 =encoding UTF-8
2
3 =head1 NAME
4
5 collectd.conf - Configuration for the system statistics collection daemon B<collectd>
6
7 =head1 SYNOPSIS
8
9   BaseDir "/var/lib/collectd"
10   PIDFile "/run/collectd.pid"
11   Interval 10.0
12
13   LoadPlugin cpu
14   LoadPlugin load
15
16   <LoadPlugin df>
17     Interval 3600
18   </LoadPlugin>
19   <Plugin df>
20     ValuesPercentage true
21   </Plugin>
22
23   LoadPlugin ping
24   <Plugin ping>
25     Host "example.org"
26     Host "provider.net"
27   </Plugin>
28
29 =head1 DESCRIPTION
30
31 This config file controls how the system statistics collection daemon
32 B<collectd> behaves. The most significant option is B<LoadPlugin>, which
33 controls which plugins to load. These plugins ultimately define collectd's
34 behavior. If the B<AutoLoadPlugin> option has been enabled, the explicit
35 B<LoadPlugin> lines may be omitted for all plugins with a configuration block,
36 i.e. a C<E<lt>PluginE<nbsp>...E<gt>> block.
37
38 The syntax of this config file is similar to the config file of the famous
39 I<Apache> webserver. Each line contains either an option (a key and a list of
40 one or more values) or a section-start or -end. Empty lines and everything
41 after a non-quoted hash-symbol (C<#>) are ignored. I<Keys> are unquoted
42 strings, consisting only of alphanumeric characters and the underscore (C<_>)
43 character. Keys are handled case insensitive by I<collectd> itself and all
44 plugins included with it. I<Values> can either be an I<unquoted string>, a
45 I<quoted string> (enclosed in double-quotes) a I<number> or a I<boolean>
46 expression. I<Unquoted strings> consist of only alphanumeric characters and
47 underscores (C<_>) and do not need to be quoted. I<Quoted strings> are
48 enclosed in double quotes (C<">). You can use the backslash character (C<\>)
49 to include double quotes as part of the string. I<Numbers> can be specified in
50 decimal and floating point format (using a dot C<.> as decimal separator),
51 hexadecimal when using the C<0x> prefix and octal with a leading zero (C<0>).
52 I<Boolean> values are either B<true> or B<false>.
53
54 Lines may be wrapped by using C<\> as the last character before the newline.
55 This allows long lines to be split into multiple lines. Quoted strings may be
56 wrapped as well. However, those are treated special in that whitespace at the
57 beginning of the following lines will be ignored, which allows for nicely
58 indenting the wrapped lines.
59
60 The configuration is read and processed in order, i.e. from top to bottom. So
61 the plugins are loaded in the order listed in this config file. It is a good
62 idea to load any logging plugins first in order to catch messages from plugins
63 during configuration. Also, unless B<AutoLoadPlugin> is enabled, the
64 B<LoadPlugin> option I<must> occur I<before> the appropriate
65 C<E<lt>B<Plugin> ...E<gt>> block.
66
67 =head1 GLOBAL OPTIONS
68
69 =over 4
70
71 =item B<BaseDir> I<Directory>
72
73 Sets the base directory. This is the directory beneath which all RRD-files are
74 created. Possibly more subdirectories are created. This is also the working
75 directory for the daemon.
76
77 =item B<LoadPlugin> I<Plugin>
78
79 Loads the plugin I<Plugin>. This is required to load plugins, unless the
80 B<AutoLoadPlugin> option is enabled (see below). Without any loaded plugins,
81 I<collectd> will be mostly useless.
82
83 Only the first B<LoadPlugin> statement or block for a given plugin name has any
84 effect. This is useful when you want to split up the configuration into smaller
85 files and want each file to be "self contained", i.e. it contains a B<Plugin>
86 block I<and> the appropriate B<LoadPlugin> statement. The downside is that if
87 you have multiple conflicting B<LoadPlugin> blocks, e.g. when they specify
88 different intervals, only one of them (the first one encountered) will take
89 effect and all others will be silently ignored.
90
91 B<LoadPlugin> may either be a simple configuration I<statement> or a I<block>
92 with additional options, affecting the behavior of B<LoadPlugin>. A simple
93 statement looks like this:
94
95  LoadPlugin "cpu"
96
97 Options inside a B<LoadPlugin> block can override default settings and
98 influence the way plugins are loaded, e.g.:
99
100  <LoadPlugin perl>
101    Interval 60
102  </LoadPlugin>
103
104 The following options are valid inside B<LoadPlugin> blocks:
105
106 =over 4
107
108 =item B<Globals> B<true|false>
109
110 If enabled, collectd will export all global symbols of the plugin (and of all
111 libraries loaded as dependencies of the plugin) and, thus, makes those symbols
112 available for resolving unresolved symbols in subsequently loaded plugins if
113 that is supported by your system.
114
115 This is useful (or possibly even required), e.g., when loading a plugin that
116 embeds some scripting language into the daemon (e.g. the I<Perl> and
117 I<Python plugins>). Scripting languages usually provide means to load
118 extensions written in C. Those extensions require symbols provided by the
119 interpreter, which is loaded as a dependency of the respective collectd plugin.
120 See the documentation of those plugins (e.g., L<collectd-perl(5)> or
121 L<collectd-python(5)>) for details.
122
123 By default, this is disabled. As a special exception, if the plugin name is
124 either C<perl> or C<python>, the default is changed to enabled in order to keep
125 the average user from ever having to deal with this low level linking stuff.
126
127 =item B<Interval> I<Seconds>
128
129 Sets a plugin-specific interval for collecting metrics. This overrides the
130 global B<Interval> setting. If a plugin provides its own support for specifying
131 an interval, that setting will take precedence.
132
133 =item B<FlushInterval> I<Seconds>
134
135 Specifies the interval, in seconds, to call the flush callback if it's
136 defined in this plugin. By default, this is disabled.
137
138 =item B<FlushTimeout> I<Seconds>
139
140 Specifies the value of the timeout argument of the flush callback.
141
142 =back
143
144 =item B<AutoLoadPlugin> B<false>|B<true>
145
146 When set to B<false> (the default), each plugin needs to be loaded explicitly,
147 using the B<LoadPlugin> statement documented above. If a
148 B<E<lt>PluginE<nbsp>...E<gt>> block is encountered and no configuration
149 handling callback for this plugin has been registered, a warning is logged and
150 the block is ignored.
151
152 When set to B<true>, explicit B<LoadPlugin> statements are not required. Each
153 B<E<lt>PluginE<nbsp>...E<gt>> block acts as if it was immediately preceded by a
154 B<LoadPlugin> statement. B<LoadPlugin> statements are still required for
155 plugins that don't provide any configuration, e.g. the I<Load plugin>.
156
157 =item B<CollectInternalStats> B<false>|B<true>
158
159 When set to B<true>, various statistics about the I<collectd> daemon will be
160 collected, with "collectd" as the I<plugin name>. Defaults to B<false>.
161
162 The following metrics are reported:
163
164 =over 4
165
166 =item C<collectd-write_queue/queue_length>
167
168 The number of metrics currently in the write queue. You can limit the queue
169 length with the B<WriteQueueLimitLow> and B<WriteQueueLimitHigh> options.
170
171 =item C<collectd-write_queue/derive-dropped>
172
173 The number of metrics dropped due to a queue length limitation.
174 If this value is non-zero, your system can't handle all incoming metrics and
175 protects itself against overload by dropping metrics.
176
177 =item C<collectd-cache/cache_size>
178
179 The number of elements in the metric cache (the cache you can interact with
180 using L<collectd-unixsock(5)>).
181
182 =back
183
184 =item B<Include> I<Path> [I<pattern>]
185
186 If I<Path> points to a file, includes that file. If I<Path> points to a
187 directory, recursively includes all files within that directory and its
188 subdirectories. If the C<wordexp> function is available on your system,
189 shell-like wildcards are expanded before files are included. This means you can
190 use statements like the following:
191
192   Include "/etc/collectd.d/*.conf"
193
194 Starting with version 5.3, this may also be a block in which further options
195 affecting the behavior of B<Include> may be specified. The following option is
196 currently allowed:
197
198   <Include "/etc/collectd.d">
199     Filter "*.conf"
200   </Include>
201
202 =over 4
203
204 =item B<Filter> I<pattern>
205
206 If the C<fnmatch> function is available on your system, a shell-like wildcard
207 I<pattern> may be specified to filter which files to include. This may be used
208 in combination with recursively including a directory to easily be able to
209 arbitrarily mix configuration files and other documents (e.g. README files).
210 The given example is similar to the first example above but includes all files
211 matching C<*.conf> in any subdirectory of C</etc/collectd.d>.
212
213 =back
214
215 If more than one file is included by a single B<Include> option, the files
216 will be included in lexicographical order (as defined by the C<strcmp>
217 function). Thus, you can e.E<nbsp>g. use numbered prefixes to specify the
218 order in which the files are loaded.
219
220 To prevent loops and shooting yourself in the foot in interesting ways the
221 nesting is limited to a depth of 8E<nbsp>levels, which should be sufficient for
222 most uses. Since symlinks are followed it is still possible to crash the daemon
223 by looping symlinks. In our opinion significant stupidity should result in an
224 appropriate amount of pain.
225
226 It is no problem to have a block like C<E<lt>Plugin fooE<gt>> in more than one
227 file, but you cannot include files from within blocks.
228
229 =item B<PIDFile> I<File>
230
231 Sets where to write the PID file to. This file is overwritten when it exists
232 and deleted when the program is stopped. Some init-scripts might override this
233 setting using the B<-P> command-line option.
234
235 =item B<PluginDir> I<Directory>
236
237 Path to the plugins (shared objects) of collectd.
238
239 =item B<TypesDB> I<File> [I<File> ...]
240
241 Set one or more files that contain the data-set descriptions. See
242 L<types.db(5)> for a description of the format of this file.
243
244 If this option is not specified, a default file is read. If you need to define
245 custom types in addition to the types defined in the default file, you need to
246 explicitly load both. In other words, if the B<TypesDB> option is encountered
247 the default behavior is disabled and if you need the default types you have to
248 also explicitly load them.
249
250 =item B<Interval> I<Seconds>
251
252 Configures the interval in which to query the read plugins. Obviously smaller
253 values lead to a higher system load produced by collectd, while higher values
254 lead to more coarse statistics.
255
256 B<Warning:> You should set this once and then never touch it again. If you do,
257 I<you will have to delete all your RRD files> or know some serious RRDtool
258 magic! (Assuming you're using the I<RRDtool> or I<RRDCacheD> plugin.)
259
260 =item B<MaxReadInterval> I<Seconds>
261
262 A read plugin doubles the interval between queries after each failed attempt
263 to get data.
264
265 This options limits the maximum value of the interval. The default value is
266 B<86400>.
267
268 =item B<Timeout> I<Iterations>
269
270 Consider a value list "missing" when no update has been read or received for
271 I<Iterations> iterations. By default, I<collectd> considers a value list
272 missing when no update has been received for twice the update interval. Since
273 this setting uses iterations, the maximum allowed time without update depends
274 on the I<Interval> information contained in each value list. This is used in
275 the I<Threshold> configuration to dispatch notifications about missing values,
276 see L<collectd-threshold(5)> for details.
277
278 =item B<ReadThreads> I<Num>
279
280 Number of threads to start for reading plugins. The default value is B<5>, but
281 you may want to increase this if you have more than five plugins that take a
282 long time to read. Mostly those are plugins that do network-IO. Setting this to
283 a value higher than the number of registered read callbacks is not recommended.
284
285 =item B<WriteThreads> I<Num>
286
287 Number of threads to start for dispatching value lists to write plugins. The
288 default value is B<5>, but you may want to increase this if you have more than
289 five plugins that may take relatively long to write to.
290
291 =item B<WriteQueueLimitHigh> I<HighNum>
292
293 =item B<WriteQueueLimitLow> I<LowNum>
294
295 Metrics are read by the I<read threads> and then put into a queue to be handled
296 by the I<write threads>. If one of the I<write plugins> is slow (e.g. network
297 timeouts, I/O saturation of the disk) this queue will grow. In order to avoid
298 running into memory issues in such a case, you can limit the size of this
299 queue.
300
301 By default, there is no limit and memory may grow indefinitely. This is most
302 likely not an issue for clients, i.e. instances that only handle the local
303 metrics. For servers it is recommended to set this to a non-zero value, though.
304
305 You can set the limits using B<WriteQueueLimitHigh> and B<WriteQueueLimitLow>.
306 Each of them takes a numerical argument which is the number of metrics in the
307 queue. If there are I<HighNum> metrics in the queue, any new metrics I<will> be
308 dropped. If there are less than I<LowNum> metrics in the queue, all new metrics
309 I<will> be enqueued. If the number of metrics currently in the queue is between
310 I<LowNum> and I<HighNum>, the metric is dropped with a probability that is
311 proportional to the number of metrics in the queue (i.e. it increases linearly
312 until it reaches 100%.)
313
314 If B<WriteQueueLimitHigh> is set to non-zero and B<WriteQueueLimitLow> is
315 unset, the latter will default to half of B<WriteQueueLimitHigh>.
316
317 If you do not want to randomly drop values when the queue size is between
318 I<LowNum> and I<HighNum>, set B<WriteQueueLimitHigh> and B<WriteQueueLimitLow>
319 to the same value.
320
321 Enabling the B<CollectInternalStats> option is of great help to figure out the
322 values to set B<WriteQueueLimitHigh> and B<WriteQueueLimitLow> to.
323
324 =item B<Hostname> I<Name>
325
326 Sets the hostname that identifies a host. If you omit this setting, the
327 hostname will be determined using the L<gethostname(2)> system call.
328
329 =item B<FQDNLookup> B<true|false>
330
331 If B<Hostname> is determined automatically this setting controls whether or not
332 the daemon should try to figure out the "fully qualified domain name", FQDN.
333 This is done using a lookup of the name returned by C<gethostname>. This option
334 is enabled by default.
335
336 =item B<PreCacheChain> I<ChainName>
337
338 =item B<PostCacheChain> I<ChainName>
339
340 Configure the name of the "pre-cache chain" and the "post-cache chain". Please
341 see L</"FILTER CONFIGURATION"> below on information on chains and how these
342 setting change the daemon's behavior.
343
344 =back
345
346 =head1 PLUGIN OPTIONS
347
348 Some plugins may register own options. These options must be enclosed in a
349 C<Plugin>-Section. Which options exist depends on the plugin used. Some plugins
350 require external configuration, too. The C<apache plugin>, for example,
351 required C<mod_status> to be configured in the webserver you're going to
352 collect data from. These plugins are listed below as well, even if they don't
353 require any configuration within collectd's configuration file.
354
355 A list of all plugins and a short summary for each plugin can be found in the
356 F<README> file shipped with the sourcecode and hopefully binary packets as
357 well.
358
359 =head2 Plugin C<aggregation>
360
361 The I<Aggregation plugin> makes it possible to aggregate several values into
362 one using aggregation functions such as I<sum>, I<average>, I<min> and I<max>.
363 This can be put to a wide variety of uses, e.g. average and total CPU
364 statistics for your entire fleet.
365
366 The grouping is powerful but, as with many powerful tools, may be a bit
367 difficult to wrap your head around. The grouping will therefore be
368 demonstrated using an example: The average and sum of the CPU usage across
369 all CPUs of each host is to be calculated.
370
371 To select all the affected values for our example, set C<Plugin cpu> and
372 C<Type cpu>. The other values are left unspecified, meaning "all values". The
373 I<Host>, I<Plugin>, I<PluginInstance>, I<Type> and I<TypeInstance> options
374 work as if they were specified in the C<WHERE> clause of an C<SELECT> SQL
375 statement.
376
377   Plugin "cpu"
378   Type "cpu"
379
380 Although the I<Host>, I<PluginInstance> (CPU number, i.e. 0, 1, 2, ...)  and
381 I<TypeInstance> (idle, user, system, ...) fields are left unspecified in the
382 example, the intention is to have a new value for each host / type instance
383 pair. This is achieved by "grouping" the values using the C<GroupBy> option.
384 It can be specified multiple times to group by more than one field.
385
386   GroupBy "Host"
387   GroupBy "TypeInstance"
388
389 We do neither specify nor group by I<plugin instance> (the CPU number), so all
390 metrics that differ in the CPU number only will be aggregated. Each
391 aggregation needs I<at least one> such field, otherwise no aggregation would
392 take place.
393
394 The full example configuration looks like this:
395
396  <Plugin "aggregation">
397    <Aggregation>
398      Plugin "cpu"
399      Type "cpu"
400
401      GroupBy "Host"
402      GroupBy "TypeInstance"
403
404      CalculateSum true
405      CalculateAverage true
406    </Aggregation>
407  </Plugin>
408
409 There are a couple of limitations you should be aware of:
410
411 =over 4
412
413 =item *
414
415 The I<Type> cannot be left unspecified, because it is not reasonable to add
416 apples to oranges. Also, the internal lookup structure won't work if you try
417 to group by type.
418
419 =item *
420
421 There must be at least one unspecified, ungrouped field. Otherwise nothing
422 will be aggregated.
423
424 =back
425
426 As you can see in the example above, each aggregation has its own
427 B<Aggregation> block. You can have multiple aggregation blocks and aggregation
428 blocks may match the same values, i.e. one value list can update multiple
429 aggregations. The following options are valid inside B<Aggregation> blocks:
430
431 =over 4
432
433 =item B<Host> I<Host>
434
435 =item B<Plugin> I<Plugin>
436
437 =item B<PluginInstance> I<PluginInstance>
438
439 =item B<Type> I<Type>
440
441 =item B<TypeInstance> I<TypeInstance>
442
443 Selects the value lists to be added to this aggregation. B<Type> must be a
444 valid data set name, see L<types.db(5)> for details.
445
446 If the string starts with and ends with a slash (C</>), the string is
447 interpreted as a I<regular expression>. The regex flavor used are POSIX
448 extended regular expressions as described in L<regex(7)>. Example usage:
449
450  Host "/^db[0-9]\\.example\\.com$/"
451
452 =item B<GroupBy> B<Host>|B<Plugin>|B<PluginInstance>|B<TypeInstance>
453
454 Group valued by the specified field. The B<GroupBy> option may be repeated to
455 group by multiple fields.
456
457 =item B<SetHost> I<Host>
458
459 =item B<SetPlugin> I<Plugin>
460
461 =item B<SetPluginInstance> I<PluginInstance>
462
463 =item B<SetTypeInstance> I<TypeInstance>
464
465 Sets the appropriate part of the identifier to the provided string.
466
467 The I<PluginInstance> should include the placeholder C<%{aggregation}> which
468 will be replaced with the aggregation function, e.g. "average". Not including
469 the placeholder will result in duplication warnings and/or messed up values if
470 more than one aggregation function are enabled.
471
472 The following example calculates the average usage of all "even" CPUs:
473
474  <Plugin "aggregation">
475    <Aggregation>
476      Plugin "cpu"
477      PluginInstance "/[0,2,4,6,8]$/"
478      Type "cpu"
479
480      SetPlugin "cpu"
481      SetPluginInstance "even-%{aggregation}"
482
483      GroupBy "Host"
484      GroupBy "TypeInstance"
485
486      CalculateAverage true
487    </Aggregation>
488  </Plugin>
489
490 This will create the files:
491
492 =over 4
493
494 =item *
495
496 foo.example.com/cpu-even-average/cpu-idle
497
498 =item *
499
500 foo.example.com/cpu-even-average/cpu-system
501
502 =item *
503
504 foo.example.com/cpu-even-average/cpu-user
505
506 =item *
507
508 ...
509
510 =back
511
512 =item B<CalculateNum> B<true>|B<false>
513
514 =item B<CalculateSum> B<true>|B<false>
515
516 =item B<CalculateAverage> B<true>|B<false>
517
518 =item B<CalculateMinimum> B<true>|B<false>
519
520 =item B<CalculateMaximum> B<true>|B<false>
521
522 =item B<CalculateStddev> B<true>|B<false>
523
524 Boolean options for enabling calculation of the number of value lists, their
525 sum, average, minimum, maximum andE<nbsp>/ or standard deviation. All options
526 are disabled by default.
527
528 =back
529
530 =head2 Plugin C<amqp>
531
532 The I<AMQP plugin> can be used to communicate with other instances of
533 I<collectd> or third party applications using an AMQP 0.9.1 message broker.
534 Values are sent to or received from the broker, which handles routing,
535 queueing and possibly filtering out messages.
536
537 B<Synopsis:>
538
539  <Plugin "amqp">
540    # Send values to an AMQP broker
541    <Publish "some_name">
542      Host "localhost"
543      Port "5672"
544      VHost "/"
545      User "guest"
546      Password "guest"
547      Exchange "amq.fanout"
548  #   ExchangeType "fanout"
549  #   RoutingKey "collectd"
550  #   Persistent false
551  #   ConnectionRetryDelay 0
552  #   Format "command"
553  #   StoreRates false
554  #   GraphitePrefix "collectd."
555  #   GraphiteEscapeChar "_"
556  #   GraphiteSeparateInstances false
557  #   GraphiteAlwaysAppendDS false
558  #   GraphitePreserveSeparator false
559    </Publish>
560
561    # Receive values from an AMQP broker
562    <Subscribe "some_name">
563      Host "localhost"
564      Port "5672"
565      VHost "/"
566      User "guest"
567      Password "guest"
568      Exchange "amq.fanout"
569  #   ExchangeType "fanout"
570  #   Queue "queue_name"
571  #   QueueDurable false
572  #   QueueAutoDelete true
573  #   RoutingKey "collectd.#"
574  #   ConnectionRetryDelay 0
575    </Subscribe>
576  </Plugin>
577
578 The plugin's configuration consists of a number of I<Publish> and I<Subscribe>
579 blocks, which configure sending and receiving of values respectively. The two
580 blocks are very similar, so unless otherwise noted, an option can be used in
581 either block. The name given in the blocks starting tag is only used for
582 reporting messages, but may be used to support I<flushing> of certain
583 I<Publish> blocks in the future.
584
585 =over 4
586
587 =item B<Host> I<Host>
588
589 Hostname or IP-address of the AMQP broker. Defaults to the default behavior of
590 the underlying communications library, I<rabbitmq-c>, which is "localhost".
591
592 =item B<Port> I<Port>
593
594 Service name or port number on which the AMQP broker accepts connections. This
595 argument must be a string, even if the numeric form is used. Defaults to
596 "5672".
597
598 =item B<VHost> I<VHost>
599
600 Name of the I<virtual host> on the AMQP broker to use. Defaults to "/".
601
602 =item B<User> I<User>
603
604 =item B<Password> I<Password>
605
606 Credentials used to authenticate to the AMQP broker. By default "guest"/"guest"
607 is used.
608
609 =item B<Exchange> I<Exchange>
610
611 In I<Publish> blocks, this option specifies the I<exchange> to send values to.
612 By default, "amq.fanout" will be used.
613
614 In I<Subscribe> blocks this option is optional. If given, a I<binding> between
615 the given exchange and the I<queue> is created, using the I<routing key> if
616 configured. See the B<Queue> and B<RoutingKey> options below.
617
618 =item B<ExchangeType> I<Type>
619
620 If given, the plugin will try to create the configured I<exchange> with this
621 I<type> after connecting. When in a I<Subscribe> block, the I<queue> will then
622 be bound to this exchange.
623
624 =item B<Queue> I<Queue> (Subscribe only)
625
626 Configures the I<queue> name to subscribe to. If no queue name was configured
627 explicitly, a unique queue name will be created by the broker.
628
629 =item B<QueueDurable> B<true>|B<false> (Subscribe only)
630
631 Defines if the I<queue> subscribed to is durable (saved to persistent storage)
632 or transient (will disappear if the AMQP broker is restarted). Defaults to
633 "false".
634
635 This option should be used in conjunction with the I<Persistent> option on the
636 publish side.
637
638 =item B<QueueAutoDelete> B<true>|B<false> (Subscribe only)
639
640 Defines if the I<queue> subscribed to will be deleted once the last consumer
641 unsubscribes. Defaults to "true".
642
643 =item B<RoutingKey> I<Key>
644
645 In I<Publish> blocks, this configures the routing key to set on all outgoing
646 messages. If not given, the routing key will be computed from the I<identifier>
647 of the value. The host, plugin, type and the two instances are concatenated
648 together using dots as the separator and all containing dots replaced with
649 slashes. For example "collectd.host/example/com.cpu.0.cpu.user". This makes it
650 possible to receive only specific values using a "topic" exchange.
651
652 In I<Subscribe> blocks, configures the I<routing key> used when creating a
653 I<binding> between an I<exchange> and the I<queue>. The usual wildcards can be
654 used to filter messages when using a "topic" exchange. If you're only
655 interested in CPU statistics, you could use the routing key "collectd.*.cpu.#"
656 for example.
657
658 =item B<Persistent> B<true>|B<false> (Publish only)
659
660 Selects the I<delivery method> to use. If set to B<true>, the I<persistent>
661 mode will be used, i.e. delivery is guaranteed. If set to B<false> (the
662 default), the I<transient> delivery mode will be used, i.e. messages may be
663 lost due to high load, overflowing queues or similar issues.
664
665 =item B<ConnectionRetryDelay> I<Delay>
666
667 When the connection to the AMQP broker is lost, defines the time in seconds to
668 wait before attempting to reconnect. Defaults to 0, which implies collectd will
669 attempt to reconnect at each read interval (in Subscribe mode) or each time
670 values are ready for submission (in Publish mode).
671
672 =item B<Format> B<Command>|B<JSON>|B<Graphite> (Publish only)
673
674 Selects the format in which messages are sent to the broker. If set to
675 B<Command> (the default), values are sent as C<PUTVAL> commands which are
676 identical to the syntax used by the I<Exec> and I<UnixSock plugins>. In this
677 case, the C<Content-Type> header field will be set to C<text/collectd>.
678
679 If set to B<JSON>, the values are encoded in the I<JavaScript Object Notation>,
680 an easy and straight forward exchange format. The C<Content-Type> header field
681 will be set to C<application/json>.
682
683 If set to B<Graphite>, values are encoded in the I<Graphite> format, which is
684 "<metric> <value> <timestamp>\n". The C<Content-Type> header field will be set to
685 C<text/graphite>.
686
687 A subscribing client I<should> use the C<Content-Type> header field to
688 determine how to decode the values. Currently, the I<AMQP plugin> itself can
689 only decode the B<Command> format.
690
691 =item B<StoreRates> B<true>|B<false> (Publish only)
692
693 Determines whether or not C<COUNTER>, C<DERIVE> and C<ABSOLUTE> data sources
694 are converted to a I<rate> (i.e. a C<GAUGE> value). If set to B<false> (the
695 default), no conversion is performed. Otherwise the conversion is performed
696 using the internal value cache.
697
698 Please note that currently this option is only used if the B<Format> option has
699 been set to B<JSON>.
700
701 =item B<GraphitePrefix> (Publish and B<Format>=I<Graphite> only)
702
703 A prefix can be added in the metric name when outputting in the I<Graphite> format.
704 It's added before the I<Host> name.
705 Metric name will be "<prefix><host><postfix><plugin><type><name>"
706
707 =item B<GraphitePostfix> (Publish and B<Format>=I<Graphite> only)
708
709 A postfix can be added in the metric name when outputting in the I<Graphite> format.
710 It's added after the I<Host> name.
711 Metric name will be "<prefix><host><postfix><plugin><type><name>"
712
713 =item B<GraphiteEscapeChar> (Publish and B<Format>=I<Graphite> only)
714
715 Specify a character to replace dots (.) in the host part of the metric name.
716 In I<Graphite> metric name, dots are used as separators between different
717 metric parts (host, plugin, type).
718 Default is "_" (I<Underscore>).
719
720 =item B<GraphiteSeparateInstances> B<true>|B<false>
721
722 If set to B<true>, the plugin instance and type instance will be in their own
723 path component, for example C<host.cpu.0.cpu.idle>. If set to B<false> (the
724 default), the plugin and plugin instance (and likewise the type and type
725 instance) are put into one component, for example C<host.cpu-0.cpu-idle>.
726
727 =item B<GraphiteAlwaysAppendDS> B<true>|B<false>
728
729 If set to B<true>, append the name of the I<Data Source> (DS) to the "metric"
730 identifier. If set to B<false> (the default), this is only done when there is
731 more than one DS.
732
733 =item B<GraphitePreserveSeparator> B<false>|B<true>
734
735 If set to B<false> (the default) the C<.> (dot) character is replaced with
736 I<GraphiteEscapeChar>. Otherwise, if set to B<true>, the C<.> (dot) character
737 is preserved, i.e. passed through.
738
739 =back
740
741 =head2 Plugin C<amqp1>
742
743 The I<AMQP1 plugin> can be used to communicate with other instances of
744 I<collectd> or third party applications using an AMQP 1.0 message
745 intermediary. Metric values or notifications are sent to the
746 messaging intermediary which may handle direct messaging or
747 queue based transfer.
748
749 B<Synopsis:>
750
751  <Plugin "amqp1">
752    # Send values to an AMQP 1.0 intermediary
753   <Transport "name">
754     Host "localhost"
755     Port "5672"
756     User "guest"
757     Password "guest"
758     Address "collectd"
759 #    RetryDelay 1
760     <Instance "some_name">
761         Format "command"
762         PreSettle false
763         Notify false
764  #      StoreRates false
765  #      GraphitePrefix "collectd."
766  #      GraphiteEscapeChar "_"
767  #      GraphiteSeparateInstances false
768  #      GraphiteAlwaysAppendDS false
769  #      GraphitePreserveSeparator false
770     </Instance>
771   </Transport>
772  </Plugin>
773
774 The plugin's configuration consists of a I<Transport> that configures
775 communications to the AMQP 1.0 messaging bus and one or more I<Instance>
776 corresponding to metric or event publishers to the messaging system.
777
778 The address in the I<Transport> block concatenated with the name given in the
779 I<Instance> block starting tag will be used as the send-to address for
780 communications over the messaging link.
781
782 The following options are accepted within each I<Transport> block:
783
784 =over 4
785
786 =item B<Host> I<Host>
787
788 Hostname or IP-address of the AMQP 1.0 intermediary. Defaults to the
789 default behavior of the underlying communications library,
790 I<libqpid-proton>, which is "localhost".
791
792 =item B<Port> I<Port>
793
794 Service name or port number on which the AMQP 1.0 intermediary accepts
795 connections. This argument must be a string, even if the numeric form
796 is used. Defaults to "5672".
797
798 =item B<User> I<User>
799
800 =item B<Password> I<Password>
801
802 Credentials used to authenticate to the AMQP 1.0 intermediary. By
803 default "guest"/"guest" is used.
804
805 =item B<Address> I<Address>
806
807 This option specifies the prefix for the send-to value in the message.
808 By default, "collectd" will be used.
809
810 =item B<RetryDelay> I<RetryDelay>
811
812 When the AMQP1 connection is lost, defines the time in seconds to wait
813 before attempting to reconnect. Defaults to 1, which implies attempt
814 to reconnect at 1 second intervals.
815
816 =back
817
818 The following options are accepted within each I<Instance> block:
819
820 =over 4
821
822 =item B<Format> B<Command>|B<JSON>|B<Graphite>
823
824 Selects the format in which messages are sent to the intermediary. If set to
825 B<Command> (the default), values are sent as C<PUTVAL> commands which are
826 identical to the syntax used by the I<Exec> and I<UnixSock plugins>. In this
827 case, the C<Content-Type> header field will be set to C<text/collectd>.
828
829 If set to B<JSON>, the values are encoded in the I<JavaScript Object Notation>,
830 an easy and straight forward exchange format. The C<Content-Type> header field
831 will be set to C<application/json>.
832
833 If set to B<Graphite>, values are encoded in the I<Graphite> format, which is
834 "<metric> <value> <timestamp>\n". The C<Content-Type> header field will be set to
835 C<text/graphite>.
836
837 A subscribing client I<should> use the C<Content-Type> header field to
838 determine how to decode the values.
839
840 =item B<PreSettle> B<true>|B<false>
841
842 If set to B<false> (the default), the plugin will wait for a message
843 acknowledgement from the messaging bus before sending the next
844 message. This indicates transfer of ownership to the messaging
845 system. If set to B<true>, the plugin will not wait for a message
846 acknowledgement and the message may be dropped prior to transfer of
847 ownership.
848
849 =item B<Notify> B<true>|B<false>
850
851 If set to B<false> (the default), the plugin will service the
852 instance write call back as a value list. If set to B<true> the
853 plugin will service the instance as a write notification callback
854 for alert formatting.
855
856 =item B<StoreRates> B<true>|B<false>
857
858 Determines whether or not C<COUNTER>, C<DERIVE> and C<ABSOLUTE> data sources
859 are converted to a I<rate> (i.e. a C<GAUGE> value). If set to B<false> (the
860 default), no conversion is performed. Otherwise the conversion is performed
861 using the internal value cache.
862
863 Please note that currently this option is only used if the B<Format> option has
864 been set to B<JSON>.
865
866 =item B<GraphitePrefix>
867
868 A prefix can be added in the metric name when outputting in the I<Graphite> format.
869 It's added before the I<Host> name.
870 Metric name will be "<prefix><host><postfix><plugin><type><name>"
871
872 =item B<GraphitePostfix>
873
874 A postfix can be added in the metric name when outputting in the I<Graphite> format.
875 It's added after the I<Host> name.
876 Metric name will be "<prefix><host><postfix><plugin><type><name>"
877
878 =item B<GraphiteEscapeChar>
879
880 Specify a character to replace dots (.) in the host part of the metric name.
881 In I<Graphite> metric name, dots are used as separators between different
882 metric parts (host, plugin, type).
883 Default is "_" (I<Underscore>).
884
885 =item B<GraphiteSeparateInstances> B<true>|B<false>
886
887 If set to B<true>, the plugin instance and type instance will be in their own
888 path component, for example C<host.cpu.0.cpu.idle>. If set to B<false> (the
889 default), the plugin and plugin instance (and likewise the type and type
890 instance) are put into one component, for example C<host.cpu-0.cpu-idle>.
891
892 =item B<GraphiteAlwaysAppendDS> B<true>|B<false>
893
894 If set to B<true>, append the name of the I<Data Source> (DS) to the "metric"
895 identifier. If set to B<false> (the default), this is only done when there is
896 more than one DS.
897
898 =item B<GraphitePreserveSeparator> B<false>|B<true>
899
900 If set to B<false> (the default) the C<.> (dot) character is replaced with
901 I<GraphiteEscapeChar>. Otherwise, if set to B<true>, the C<.> (dot) character
902 is preserved, i.e. passed through.
903
904 =back
905
906 =head2 Plugin C<apache>
907
908 To configure the C<apache>-plugin you first need to configure the Apache
909 webserver correctly. The Apache-plugin C<mod_status> needs to be loaded and
910 working and the C<ExtendedStatus> directive needs to be B<enabled>. You can use
911 the following snipped to base your Apache config upon:
912
913   ExtendedStatus on
914   <IfModule mod_status.c>
915     <Location /mod_status>
916       SetHandler server-status
917     </Location>
918   </IfModule>
919
920 Since its C<mod_status> module is very similar to Apache's, B<lighttpd> is
921 also supported. It introduces a new field, called C<BusyServers>, to count the
922 number of currently connected clients. This field is also supported.
923
924 The configuration of the I<Apache> plugin consists of one or more
925 C<E<lt>InstanceE<nbsp>/E<gt>> blocks. Each block requires one string argument
926 as the instance name. For example:
927
928  <Plugin "apache">
929    <Instance "www1">
930      URL "http://www1.example.com/mod_status?auto"
931    </Instance>
932    <Instance "www2">
933      URL "http://www2.example.com/mod_status?auto"
934    </Instance>
935  </Plugin>
936
937 The instance name will be used as the I<plugin instance>. To emulate the old
938 (versionE<nbsp>4) behavior, you can use an empty string (""). In order for the
939 plugin to work correctly, each instance name must be unique. This is not
940 enforced by the plugin and it is your responsibility to ensure it.
941
942 The following options are accepted within each I<Instance> block:
943
944 =over 4
945
946 =item B<URL> I<http://host/mod_status?auto>
947
948 Sets the URL of the C<mod_status> output. This needs to be the output generated
949 by C<ExtendedStatus on> and it needs to be the machine readable output
950 generated by appending the C<?auto> argument. This option is I<mandatory>.
951
952 =item B<User> I<Username>
953
954 Optional user name needed for authentication.
955
956 =item B<Password> I<Password>
957
958 Optional password needed for authentication.
959
960 =item B<VerifyPeer> B<true|false>
961
962 Enable or disable peer SSL certificate verification. See
963 L<http://curl.haxx.se/docs/sslcerts.html> for details. Enabled by default.
964
965 =item B<VerifyHost> B<true|false>
966
967 Enable or disable peer host name verification. If enabled, the plugin checks
968 if the C<Common Name> or a C<Subject Alternate Name> field of the SSL
969 certificate matches the host name provided by the B<URL> option. If this
970 identity check fails, the connection is aborted. Obviously, only works when
971 connecting to a SSL enabled server. Enabled by default.
972
973 =item B<CACert> I<File>
974
975 File that holds one or more SSL certificates. If you want to use HTTPS you will
976 possibly need this option. What CA certificates come bundled with C<libcurl>
977 and are checked by default depends on the distribution you use.
978
979 =item B<SSLCiphers> I<list of ciphers>
980
981 Specifies which ciphers to use in the connection. The list of ciphers
982 must specify valid ciphers. See
983 L<http://www.openssl.org/docs/apps/ciphers.html> for details.
984
985 =item B<Timeout> I<Milliseconds>
986
987 The B<Timeout> option sets the overall timeout for HTTP requests to B<URL>, in
988 milliseconds. By default, the configured B<Interval> is used to set the
989 timeout.
990
991 =back
992
993 =head2 Plugin C<apcups>
994
995 =over 4
996
997 =item B<Host> I<Hostname>
998
999 Hostname of the host running B<apcupsd>. Defaults to B<localhost>. Please note
1000 that IPv6 support has been disabled unless someone can confirm or decline that
1001 B<apcupsd> can handle it.
1002
1003 =item B<Port> I<Port>
1004
1005 TCP-Port to connect to. Defaults to B<3551>.
1006
1007 =item B<ReportSeconds> B<true>|B<false>
1008
1009 If set to B<true>, the time reported in the C<timeleft> metric will be
1010 converted to seconds. This is the recommended setting. If set to B<false>, the
1011 default for backwards compatibility, the time will be reported in minutes.
1012
1013 =item B<PersistentConnection> B<true>|B<false>
1014
1015 The plugin is designed to keep the connection to I<apcupsd> open between reads.
1016 If plugin poll interval is greater than 15 seconds (hardcoded socket close
1017 timeout in I<apcupsd> NIS), then this option is B<false> by default.
1018
1019 You can instruct the plugin to close the connection after each read by setting
1020 this option to B<false> or force keeping the connection by setting it to B<true>.
1021
1022 If I<apcupsd> appears to close the connection due to inactivity quite quickly,
1023 the plugin will try to detect this problem and switch to an open-read-close mode.
1024
1025 =back
1026
1027 =head2 Plugin C<aquaero>
1028
1029 This plugin collects the value of the available sensors in an
1030 I<AquaeroE<nbsp>5> board. AquaeroE<nbsp>5 is a water-cooling controller board,
1031 manufactured by Aqua Computer GmbH L<http://www.aquacomputer.de/>, with a USB2
1032 connection for monitoring and configuration. The board can handle multiple
1033 temperature sensors, fans, water pumps and water level sensors and adjust the
1034 output settings such as fan voltage or power used by the water pump based on
1035 the available inputs using a configurable controller included in the board.
1036 This plugin collects all the available inputs as well as some of the output
1037 values chosen by this controller. The plugin is based on the I<libaquaero5>
1038 library provided by I<aquatools-ng>.
1039
1040 =over 4
1041
1042 =item B<Device> I<DevicePath>
1043
1044 Device path of the AquaeroE<nbsp>5's USB HID (human interface device), usually
1045 in the form C</dev/usb/hiddevX>. If this option is no set the plugin will try
1046 to auto-detect the Aquaero 5 USB device based on vendor-ID and product-ID.
1047
1048 =back
1049
1050 =head2 Plugin C<ascent>
1051
1052 This plugin collects information about an Ascent server, a free server for the
1053 "World of Warcraft" game. This plugin gathers the information by fetching the
1054 XML status page using C<libcurl> and parses it using C<libxml2>.
1055
1056 The configuration options are the same as for the C<apache> plugin above:
1057
1058 =over 4
1059
1060 =item B<URL> I<http://localhost/ascent/status/>
1061
1062 Sets the URL of the XML status output.
1063
1064 =item B<User> I<Username>
1065
1066 Optional user name needed for authentication.
1067
1068 =item B<Password> I<Password>
1069
1070 Optional password needed for authentication.
1071
1072 =item B<VerifyPeer> B<true|false>
1073
1074 Enable or disable peer SSL certificate verification. See
1075 L<http://curl.haxx.se/docs/sslcerts.html> for details. Enabled by default.
1076
1077 =item B<VerifyHost> B<true|false>
1078
1079 Enable or disable peer host name verification. If enabled, the plugin checks
1080 if the C<Common Name> or a C<Subject Alternate Name> field of the SSL
1081 certificate matches the host name provided by the B<URL> option. If this
1082 identity check fails, the connection is aborted. Obviously, only works when
1083 connecting to a SSL enabled server. Enabled by default.
1084
1085 =item B<CACert> I<File>
1086
1087 File that holds one or more SSL certificates. If you want to use HTTPS you will
1088 possibly need this option. What CA certificates come bundled with C<libcurl>
1089 and are checked by default depends on the distribution you use.
1090
1091 =item B<Timeout> I<Milliseconds>
1092
1093 The B<Timeout> option sets the overall timeout for HTTP requests to B<URL>, in
1094 milliseconds. By default, the configured B<Interval> is used to set the
1095 timeout.
1096
1097 =back
1098
1099 =head2 Plugin C<barometer>
1100
1101 This plugin reads absolute air pressure using digital barometer sensor on a I2C
1102 bus. Supported sensors are:
1103
1104 =over 5
1105
1106 =item I<MPL115A2> from Freescale,
1107 see L<http://www.freescale.com/webapp/sps/site/prod_summary.jsp?code=MPL115A>.
1108
1109
1110 =item I<MPL3115> from Freescale
1111 see L<http://www.freescale.com/webapp/sps/site/prod_summary.jsp?code=MPL3115A2>.
1112
1113
1114 =item I<BMP085> from Bosch Sensortec
1115
1116 =back
1117
1118 The sensor type - one of the above - is detected automatically by the plugin
1119 and indicated in the plugin_instance (you will see subdirectory
1120 "barometer-mpl115" or "barometer-mpl3115", or "barometer-bmp085"). The order of
1121 detection is BMP085 -> MPL3115 -> MPL115A2, the first one found will be used
1122 (only one sensor can be used by the plugin).
1123
1124 The plugin provides absolute barometric pressure, air pressure reduced to sea
1125 level (several possible approximations) and as an auxiliary value also internal
1126 sensor temperature. It uses (expects/provides) typical metric units - pressure
1127 in [hPa], temperature in [C], altitude in [m].
1128
1129 It was developed and tested under Linux only. The only platform dependency is
1130 the standard Linux i2c-dev interface (the particular bus driver has to
1131 support the SM Bus command subset).
1132
1133 The reduction or normalization to mean sea level pressure requires (depending
1134 on selected method/approximation) also altitude and reference to temperature
1135 sensor(s).  When multiple temperature sensors are configured the minimum of
1136 their values is always used (expecting that the warmer ones are affected by
1137 e.g. direct sun light at that moment).
1138
1139 Synopsis:
1140
1141   <Plugin "barometer">
1142      Device            "/dev/i2c-0";
1143      Oversampling      512
1144      PressureOffset    0.0
1145      TemperatureOffset 0.0
1146      Normalization     2
1147      Altitude          238.0
1148      TemperatureSensor "myserver/onewire-F10FCA000800/temperature"
1149   </Plugin>
1150
1151 =over 4
1152
1153 =item B<Device> I<device>
1154
1155 The only mandatory configuration parameter.
1156
1157 Device name of the I2C bus to which the sensor is connected. Note that
1158 typically you need to have loaded the i2c-dev module.
1159 Using i2c-tools you can check/list i2c buses available on your system by:
1160
1161   i2cdetect -l
1162
1163 Then you can scan for devices on given bus. E.g. to scan the whole bus 0 use:
1164
1165   i2cdetect -y -a 0
1166
1167 This way you should be able to verify that the pressure sensor (either type) is
1168 connected and detected on address 0x60.
1169
1170 =item B<Oversampling> I<value>
1171
1172 Optional parameter controlling the oversampling/accuracy. Default value
1173 is 1 providing fastest and least accurate reading.
1174
1175 For I<MPL115> this is the size of the averaging window. To filter out sensor
1176 noise a simple averaging using floating window of this configurable size is
1177 used. The plugin will use average of the last C<value> measurements (value of 1
1178 means no averaging).  Minimal size is 1, maximal 1024.
1179
1180 For I<MPL3115> this is the oversampling value. The actual oversampling is
1181 performed by the sensor and the higher value the higher accuracy and longer
1182 conversion time (although nothing to worry about in the collectd context).
1183 Supported values are: 1, 2, 4, 8, 16, 32, 64 and 128. Any other value is
1184 adjusted by the plugin to the closest supported one.
1185
1186 For I<BMP085> this is the oversampling value. The actual oversampling is
1187 performed by the sensor and the higher value the higher accuracy and longer
1188 conversion time (although nothing to worry about in the collectd context).
1189 Supported values are: 1, 2, 4, 8. Any other value is adjusted by the plugin to
1190 the closest supported one.
1191
1192 =item B<PressureOffset> I<offset>
1193
1194 Optional parameter for MPL3115 only.
1195
1196 You can further calibrate the sensor by supplying pressure and/or temperature
1197 offsets.  This is added to the measured/caclulated value (i.e. if the measured
1198 value is too high then use negative offset).
1199 In hPa, default is 0.0.
1200
1201 =item B<TemperatureOffset> I<offset>
1202
1203 Optional parameter for MPL3115 only.
1204
1205 You can further calibrate the sensor by supplying pressure and/or temperature
1206 offsets.  This is added to the measured/caclulated value (i.e. if the measured
1207 value is too high then use negative offset).
1208 In C, default is 0.0.
1209
1210 =item B<Normalization> I<method>
1211
1212 Optional parameter, default value is 0.
1213
1214 Normalization method - what approximation/model is used to compute the mean sea
1215 level pressure from the air absolute pressure.
1216
1217 Supported values of the C<method> (integer between from 0 to 2) are:
1218
1219 =over 5
1220
1221 =item B<0> - no conversion, absolute pressure is simply copied over. For this method you
1222        do not need to configure C<Altitude> or C<TemperatureSensor>.
1223
1224 =item B<1> - international formula for conversion ,
1225 See
1226 L<http://en.wikipedia.org/wiki/Atmospheric_pressure#Altitude_atmospheric_pressure_variation>.
1227 For this method you have to configure C<Altitude> but do not need
1228 C<TemperatureSensor> (uses fixed global temperature average instead).
1229
1230 =item B<2> - formula as recommended by the Deutsche Wetterdienst (German
1231 Meteorological Service).
1232 See L<http://de.wikipedia.org/wiki/Barometrische_H%C3%B6henformel#Theorie>
1233 For this method you have to configure both  C<Altitude> and
1234 C<TemperatureSensor>.
1235
1236 =back
1237
1238
1239 =item B<Altitude> I<altitude>
1240
1241 The altitude (in meters) of the location where you meassure the pressure.
1242
1243 =item B<TemperatureSensor> I<reference>
1244
1245 Temperature sensor(s) which should be used as a reference when normalizing the
1246 pressure using C<Normalization> method 2.
1247 When specified more sensors a minimum is found and used each time.  The
1248 temperature reading directly from this pressure sensor/plugin is typically not
1249 suitable as the pressure sensor will be probably inside while we want outside
1250 temperature.  The collectd reference name is something like
1251 <hostname>/<plugin_name>-<plugin_instance>/<type>-<type_instance>
1252 (<type_instance> is usually omitted when there is just single value type). Or
1253 you can figure it out from the path of the output data files.
1254
1255 =back
1256
1257 =head2 Plugin C<battery>
1258
1259 The I<battery plugin> reports the remaining capacity, power and voltage of
1260 laptop batteries.
1261
1262 =over 4
1263
1264 =item B<ValuesPercentage> B<false>|B<true>
1265
1266 When enabled, remaining capacity is reported as a percentage, e.g. "42%
1267 capacity remaining". Otherwise the capacity is stored as reported by the
1268 battery, most likely in "Wh". This option does not work with all input methods,
1269 in particular when only C</proc/pmu> is available on an old Linux system.
1270 Defaults to B<false>.
1271
1272 =item B<ReportDegraded> B<false>|B<true>
1273
1274 Typical laptop batteries degrade over time, meaning the capacity decreases with
1275 recharge cycles. The maximum charge of the previous charge cycle is tracked as
1276 "last full capacity" and used to determine that a battery is "fully charged".
1277
1278 When this option is set to B<false>, the default, the I<battery plugin> will
1279 only report the remaining capacity. If the B<ValuesPercentage> option is
1280 enabled, the relative remaining capacity is calculated as the ratio of the
1281 "remaining capacity" and the "last full capacity". This is what most tools,
1282 such as the status bar of desktop environments, also do.
1283
1284 When set to B<true>, the battery plugin will report three values: B<charged>
1285 (remaining capacity), B<discharged> (difference between "last full capacity"
1286 and "remaining capacity") and B<degraded> (difference between "design capacity"
1287 and "last full capacity").
1288
1289 =item B<QueryStateFS> B<false>|B<true>
1290
1291 When set to B<true>, the battery plugin will only read statistics
1292 related to battery performance as exposed by StateFS at
1293 /run/state. StateFS is used in Mer-based Sailfish OS, for
1294 example.
1295
1296 =back
1297
1298 =head2 Plugin C<bind>
1299
1300 Starting with BIND 9.5.0, the most widely used DNS server software provides
1301 extensive statistics about queries, responses and lots of other information.
1302 The bind plugin retrieves this information that's encoded in XML and provided
1303 via HTTP and submits the values to collectd.
1304
1305 To use this plugin, you first need to tell BIND to make this information
1306 available. This is done with the C<statistics-channels> configuration option:
1307
1308  statistics-channels {
1309    inet localhost port 8053;
1310  };
1311
1312 The configuration follows the grouping that can be seen when looking at the
1313 data with an XSLT compatible viewer, such as a modern web browser. It's
1314 probably a good idea to make yourself familiar with the provided values, so you
1315 can understand what the collected statistics actually mean.
1316
1317 Synopsis:
1318
1319  <Plugin "bind">
1320    URL "http://localhost:8053/"
1321    ParseTime       false
1322    OpCodes         true
1323    QTypes          true
1324
1325    ServerStats     true
1326    ZoneMaintStats  true
1327    ResolverStats   false
1328    MemoryStats     true
1329
1330    <View "_default">
1331      QTypes        true
1332      ResolverStats true
1333      CacheRRSets   true
1334
1335      Zone "127.in-addr.arpa/IN"
1336    </View>
1337  </Plugin>
1338
1339 The bind plugin accepts the following configuration options:
1340
1341 =over 4
1342
1343 =item B<URL> I<URL>
1344
1345 URL from which to retrieve the XML data. If not specified,
1346 C<http://localhost:8053/> will be used.
1347
1348 =item B<ParseTime> B<true>|B<false>
1349
1350 When set to B<true>, the time provided by BIND will be parsed and used to
1351 dispatch the values. When set to B<false>, the local time source is queried.
1352
1353 This setting is set to B<true> by default for backwards compatibility; setting
1354 this to B<false> is I<recommended> to avoid problems with timezones and
1355 localization.
1356
1357 =item B<OpCodes> B<true>|B<false>
1358
1359 When enabled, statistics about the I<"OpCodes">, for example the number of
1360 C<QUERY> packets, are collected.
1361
1362 Default: Enabled.
1363
1364 =item B<QTypes> B<true>|B<false>
1365
1366 When enabled, the number of I<incoming> queries by query types (for example
1367 C<A>, C<MX>, C<AAAA>) is collected.
1368
1369 Default: Enabled.
1370
1371 =item B<ServerStats> B<true>|B<false>
1372
1373 Collect global server statistics, such as requests received over IPv4 and IPv6,
1374 successful queries, and failed updates.
1375
1376 Default: Enabled.
1377
1378 =item B<ZoneMaintStats> B<true>|B<false>
1379
1380 Collect zone maintenance statistics, mostly information about notifications
1381 (zone updates) and zone transfers.
1382
1383 Default: Enabled.
1384
1385 =item B<ResolverStats> B<true>|B<false>
1386
1387 Collect resolver statistics, i.E<nbsp>e. statistics about outgoing requests
1388 (e.E<nbsp>g. queries over IPv4, lame servers). Since the global resolver
1389 counters apparently were removed in BIND 9.5.1 and 9.6.0, this is disabled by
1390 default. Use the B<ResolverStats> option within a B<View "_default"> block
1391 instead for the same functionality.
1392
1393 Default: Disabled.
1394
1395 =item B<MemoryStats>
1396
1397 Collect global memory statistics.
1398
1399 Default: Enabled.
1400
1401 =item B<Timeout> I<Milliseconds>
1402
1403 The B<Timeout> option sets the overall timeout for HTTP requests to B<URL>, in
1404 milliseconds. By default, the configured B<Interval> is used to set the
1405 timeout.
1406
1407 =item B<View> I<Name>
1408
1409 Collect statistics about a specific I<"view">. BIND can behave different,
1410 mostly depending on the source IP-address of the request. These different
1411 configurations are called "views". If you don't use this feature, you most
1412 likely are only interested in the C<_default> view.
1413
1414 Within a E<lt>B<View>E<nbsp>I<name>E<gt> block, you can specify which
1415 information you want to collect about a view. If no B<View> block is
1416 configured, no detailed view statistics will be collected.
1417
1418 =over 4
1419
1420 =item B<QTypes> B<true>|B<false>
1421
1422 If enabled, the number of I<outgoing> queries by query type (e.E<nbsp>g. C<A>,
1423 C<MX>) is collected.
1424
1425 Default: Enabled.
1426
1427 =item B<ResolverStats> B<true>|B<false>
1428
1429 Collect resolver statistics, i.E<nbsp>e. statistics about outgoing requests
1430 (e.E<nbsp>g. queries over IPv4, lame servers).
1431
1432 Default: Enabled.
1433
1434 =item B<CacheRRSets> B<true>|B<false>
1435
1436 If enabled, the number of entries (I<"RR sets">) in the view's cache by query
1437 type is collected. Negative entries (queries which resulted in an error, for
1438 example names that do not exist) are reported with a leading exclamation mark,
1439 e.E<nbsp>g. "!A".
1440
1441 Default: Enabled.
1442
1443 =item B<Zone> I<Name>
1444
1445 When given, collect detailed information about the given zone in the view. The
1446 information collected if very similar to the global B<ServerStats> information
1447 (see above).
1448
1449 You can repeat this option to collect detailed information about multiple
1450 zones.
1451
1452 By default no detailed zone information is collected.
1453
1454 =back
1455
1456 =back
1457
1458 =head2 Plugin C<ceph>
1459
1460 The ceph plugin collects values from JSON data to be parsed by B<libyajl>
1461 (L<https://lloyd.github.io/yajl/>) retrieved from ceph daemon admin sockets.
1462
1463 A separate B<Daemon> block must be configured for each ceph daemon to be
1464 monitored. The following example will read daemon statistics from four
1465 separate ceph daemons running on the same device (two OSDs, one MON, one MDS) :
1466
1467   <Plugin ceph>
1468     LongRunAvgLatency false
1469     ConvertSpecialMetricTypes true
1470     <Daemon "osd.0">
1471       SocketPath "/var/run/ceph/ceph-osd.0.asok"
1472     </Daemon>
1473     <Daemon "osd.1">
1474       SocketPath "/var/run/ceph/ceph-osd.1.asok"
1475     </Daemon>
1476     <Daemon "mon.a">
1477       SocketPath "/var/run/ceph/ceph-mon.ceph1.asok"
1478     </Daemon>
1479     <Daemon "mds.a">
1480       SocketPath "/var/run/ceph/ceph-mds.ceph1.asok"
1481     </Daemon>
1482   </Plugin>
1483
1484 The ceph plugin accepts the following configuration options:
1485
1486 =over 4
1487
1488 =item B<LongRunAvgLatency> B<true>|B<false>
1489
1490 If enabled, latency values(sum,count pairs) are calculated as the long run
1491 average - average since the ceph daemon was started = (sum / count).
1492 When disabled, latency values are calculated as the average since the last
1493 collection = (sum_now - sum_last) / (count_now - count_last).
1494
1495 Default: Disabled
1496
1497 =item B<ConvertSpecialMetricTypes> B<true>|B<false>
1498
1499 If enabled, special metrics (metrics that differ in type from similar counters)
1500 are converted to the type of those similar counters. This currently only
1501 applies to filestore.journal_wr_bytes which is a counter for OSD daemons. The
1502 ceph schema reports this metric type as a sum,count pair while similar counters
1503 are treated as derive types. When converted, the sum is used as the counter
1504 value and is treated as a derive type.
1505 When disabled, all metrics are treated as the types received from the ceph schema.
1506
1507 Default: Enabled
1508
1509 =back
1510
1511 Each B<Daemon> block must have a string argument for the plugin instance name.
1512 A B<SocketPath> is also required for each B<Daemon> block:
1513
1514 =over 4
1515
1516 =item B<Daemon> I<DaemonName>
1517
1518 Name to be used as the instance name for this daemon.
1519
1520 =item B<SocketPath> I<SocketPath>
1521
1522 Specifies the path to the UNIX admin socket of the ceph daemon.
1523
1524 =back
1525
1526 =head2 Plugin C<cgroups>
1527
1528 This plugin collects the CPU user/system time for each I<cgroup> by reading the
1529 F<cpuacct.stat> files in the first cpuacct-mountpoint (typically
1530 F</sys/fs/cgroup/cpu.cpuacct> on machines using systemd).
1531
1532 =over 4
1533
1534 =item B<CGroup> I<Directory>
1535
1536 Select I<cgroup> based on the name. Whether only matching I<cgroups> are
1537 collected or if they are ignored is controlled by the B<IgnoreSelected> option;
1538 see below.
1539
1540 See F</"IGNORELISTS"> for details.
1541
1542 =item B<IgnoreSelected> B<true>|B<false>
1543
1544 Invert the selection: If set to true, all cgroups I<except> the ones that
1545 match any one of the criteria are collected. By default only selected
1546 cgroups are collected if a selection is made. If no selection is configured
1547 at all, B<all> cgroups are selected.
1548
1549 =back
1550
1551 =head2 Plugin C<chrony>
1552
1553 The C<chrony> plugin collects ntp data from a B<chronyd> server, such as clock
1554 skew and per-peer stratum.
1555
1556 For talking to B<chronyd>, it mimics what the B<chronyc> control program does
1557 on the wire.
1558
1559 Available configuration options for the C<chrony> plugin:
1560
1561 =over 4
1562
1563 =item B<Host> I<Hostname>
1564
1565 Hostname of the host running B<chronyd>. Defaults to B<localhost>.
1566
1567 =item B<Port> I<Port>
1568
1569 UDP-Port to connect to. Defaults to B<323>.
1570
1571 =item B<Timeout> I<Timeout>
1572
1573 Connection timeout in seconds. Defaults to B<2>.
1574
1575 =back
1576
1577 =head2 Plugin C<conntrack>
1578
1579 This plugin collects IP conntrack statistics.
1580
1581 =over 4
1582
1583 =item B<OldFiles>
1584
1585 Assume the B<conntrack_count> and B<conntrack_max> files to be found in
1586 F</proc/sys/net/ipv4/netfilter> instead of F</proc/sys/net/netfilter/>.
1587
1588 =back
1589
1590 =head2 Plugin C<cpu>
1591
1592 The I<CPU plugin> collects CPU usage metrics. By default, CPU usage is reported
1593 as Jiffies, using the C<cpu> type. Two aggregations are available:
1594
1595 =over 4
1596
1597 =item *
1598
1599 Sum, per-state, over all CPUs installed in the system; and
1600
1601 =item *
1602
1603 Sum, per-CPU, over all non-idle states of a CPU, creating an "active" state.
1604
1605 =back
1606
1607 The two aggregations can be combined, leading to I<collectd> only emitting a
1608 single "active" metric for the entire system. As soon as one of these
1609 aggregations (or both) is enabled, the I<cpu plugin> will report a percentage,
1610 rather than Jiffies. In addition, you can request individual, per-state,
1611 per-CPU metrics to be reported as percentage.
1612
1613 The following configuration options are available:
1614
1615 =over 4
1616
1617 =item B<ReportByState> B<true>|B<false>
1618
1619 When set to B<true>, the default, reports per-state metrics, e.g. "system",
1620 "user" and "idle".
1621 When set to B<false>, aggregates (sums) all I<non-idle> states into one
1622 "active" metric.
1623
1624 =item B<ReportByCpu> B<true>|B<false>
1625
1626 When set to B<true>, the default, reports per-CPU (per-core) metrics.
1627 When set to B<false>, instead of reporting metrics for individual CPUs, only a
1628 global sum of CPU states is emitted.
1629
1630 =item B<ValuesPercentage> B<false>|B<true>
1631
1632 This option is only considered when both, B<ReportByCpu> and B<ReportByState>
1633 are set to B<true>. In this case, by default, metrics will be reported as
1634 Jiffies. By setting this option to B<true>, you can request percentage values
1635 in the un-aggregated (per-CPU, per-state) mode as well.
1636
1637 =item B<ReportNumCpu> B<false>|B<true>
1638
1639 When set to B<true>, reports the number of available CPUs.
1640 Defaults to B<false>.
1641
1642 =item B<ReportGuestState> B<false>|B<true>
1643
1644 When set to B<true>, reports the "guest" and "guest_nice" CPU states.
1645 Defaults to B<false>.
1646
1647 =item B<SubtractGuestState> B<false>|B<true>
1648
1649 This option is only considered when B<ReportGuestState> is set to B<true>.
1650 "guest" and "guest_nice" are included in respectively "user" and "nice".
1651 If set to B<true>, "guest" will be subtracted from "user" and "guest_nice"
1652 will be subtracted from "nice".
1653 Defaults to B<true>.
1654
1655 =back
1656
1657 =head2 Plugin C<cpufreq>
1658
1659 This plugin doesn't have any options. It reads
1660 F</sys/devices/system/cpu/cpu0/cpufreq/scaling_cur_freq> (for the first CPU
1661 installed) to get the current CPU frequency. If this file does not exist make
1662 sure B<cpufreqd> (L<http://cpufreqd.sourceforge.net/>) or a similar tool is
1663 installed and an "cpu governor" (that's a kernel module) is loaded.
1664
1665 =head2 Plugin C<cpusleep>
1666
1667 This plugin doesn't have any options. It reads CLOCK_BOOTTIME and
1668 CLOCK_MONOTONIC and reports the difference between these clocks. Since
1669 BOOTTIME clock increments while device is suspended and MONOTONIC
1670 clock does not, the derivative of the difference between these clocks
1671 gives the relative amount of time the device has spent in suspend
1672 state. The recorded value is in milliseconds of sleep per seconds of
1673 wall clock.
1674
1675 =head2 Plugin C<csv>
1676
1677 =over 4
1678
1679 =item B<DataDir> I<Directory>
1680
1681 Set the directory to store CSV-files under. Per default CSV-files are generated
1682 beneath the daemon's working directory, i.E<nbsp>e. the B<BaseDir>.
1683 The special strings B<stdout> and B<stderr> can be used to write to the standard
1684 output and standard error channels, respectively. This, of course, only makes
1685 much sense when collectd is running in foreground- or non-daemon-mode.
1686
1687 =item B<StoreRates> B<true|false>
1688
1689 If set to B<true>, convert counter values to rates. If set to B<false> (the
1690 default) counter values are stored as is, i.E<nbsp>e. as an increasing integer
1691 number.
1692
1693 =back
1694
1695 =head2 cURL Statistics
1696
1697 All cURL-based plugins support collection of generic, request-based
1698 statistics. These are disabled by default and can be enabled selectively for
1699 each page or URL queried from the curl, curl_json, or curl_xml plugins. See
1700 the documentation of those plugins for specific information. This section
1701 describes the available metrics that can be configured for each plugin. All
1702 options are disabled by default.
1703
1704 See L<http://curl.haxx.se/libcurl/c/curl_easy_getinfo.html> for more details.
1705
1706 =over 4
1707
1708 =item B<TotalTime> B<true|false>
1709
1710 Total time of the transfer, including name resolving, TCP connect, etc.
1711
1712 =item B<NamelookupTime> B<true|false>
1713
1714 Time it took from the start until name resolving was completed.
1715
1716 =item B<ConnectTime> B<true|false>
1717
1718 Time it took from the start until the connect to the remote host (or proxy)
1719 was completed.
1720
1721 =item B<AppconnectTime> B<true|false>
1722
1723 Time it took from the start until the SSL/SSH connect/handshake to the remote
1724 host was completed.
1725
1726 =item B<PretransferTime> B<true|false>
1727
1728 Time it took from the start until just before the transfer begins.
1729
1730 =item B<StarttransferTime> B<true|false>
1731
1732 Time it took from the start until the first byte was received.
1733
1734 =item B<RedirectTime> B<true|false>
1735
1736 Time it took for all redirection steps include name lookup, connect,
1737 pre-transfer and transfer before final transaction was started.
1738
1739 =item B<RedirectCount> B<true|false>
1740
1741 The total number of redirections that were actually followed.
1742
1743 =item B<SizeUpload> B<true|false>
1744
1745 The total amount of bytes that were uploaded.
1746
1747 =item B<SizeDownload> B<true|false>
1748
1749 The total amount of bytes that were downloaded.
1750
1751 =item B<SpeedDownload> B<true|false>
1752
1753 The average download speed that curl measured for the complete download.
1754
1755 =item B<SpeedUpload> B<true|false>
1756
1757 The average upload speed that curl measured for the complete upload.
1758
1759 =item B<HeaderSize> B<true|false>
1760
1761 The total size of all the headers received.
1762
1763 =item B<RequestSize> B<true|false>
1764
1765 The total size of the issued requests.
1766
1767 =item B<ContentLengthDownload> B<true|false>
1768
1769 The content-length of the download.
1770
1771 =item B<ContentLengthUpload> B<true|false>
1772
1773 The specified size of the upload.
1774
1775 =item B<NumConnects> B<true|false>
1776
1777 The number of new connections that were created to achieve the transfer.
1778
1779 =back
1780
1781 =head2 Plugin C<curl>
1782
1783 The curl plugin uses the B<libcurl> (L<http://curl.haxx.se/>) to read web pages
1784 and the match infrastructure (the same code used by the tail plugin) to use
1785 regular expressions with the received data.
1786
1787 The following example will read the current value of AMD stock from Google's
1788 finance page and dispatch the value to collectd.
1789
1790   <Plugin curl>
1791     <Page "stock_quotes">
1792       Plugin "quotes"
1793       URL "http://finance.google.com/finance?q=NYSE%3AAMD"
1794       User "foo"
1795       Password "bar"
1796       Digest false
1797       VerifyPeer true
1798       VerifyHost true
1799       CACert "/path/to/ca.crt"
1800       Header "X-Custom-Header: foobar"
1801       Post "foo=bar"
1802
1803       MeasureResponseTime false
1804       MeasureResponseCode false
1805
1806       <Match>
1807         Regex "<span +class=\"pr\"[^>]*> *([0-9]*\\.[0-9]+) *</span>"
1808         DSType "GaugeAverage"
1809         # Note: `stock_value' is not a standard type.
1810         Type "stock_value"
1811         Instance "AMD"
1812       </Match>
1813     </Page>
1814   </Plugin>
1815
1816 In the B<Plugin> block, there may be one or more B<Page> blocks, each defining
1817 a web page and one or more "matches" to be performed on the returned data. The
1818 string argument to the B<Page> block is used as plugin instance.
1819
1820 The following options are valid within B<Page> blocks:
1821
1822 =over 4
1823
1824 =item B<Plugin> I<Plugin>
1825
1826 Use I<Plugin> as the plugin name when submitting values.
1827 Defaults to C<curl>.
1828
1829 =item B<URL> I<URL>
1830
1831 URL of the web site to retrieve. Since a regular expression will be used to
1832 extract information from this data, non-binary data is a big plus here ;)
1833
1834 =item B<User> I<Name>
1835
1836 Username to use if authorization is required to read the page.
1837
1838 =item B<Password> I<Password>
1839
1840 Password to use if authorization is required to read the page.
1841
1842 =item B<Digest> B<true>|B<false>
1843
1844 Enable HTTP digest authentication.
1845
1846 =item B<VerifyPeer> B<true>|B<false>
1847
1848 Enable or disable peer SSL certificate verification. See
1849 L<http://curl.haxx.se/docs/sslcerts.html> for details. Enabled by default.
1850
1851 =item B<VerifyHost> B<true>|B<false>
1852
1853 Enable or disable peer host name verification. If enabled, the plugin checks if
1854 the C<Common Name> or a C<Subject Alternate Name> field of the SSL certificate
1855 matches the host name provided by the B<URL> option. If this identity check
1856 fails, the connection is aborted. Obviously, only works when connecting to a
1857 SSL enabled server. Enabled by default.
1858
1859 =item B<CACert> I<file>
1860
1861 File that holds one or more SSL certificates. If you want to use HTTPS you will
1862 possibly need this option. What CA certificates come bundled with C<libcurl>
1863 and are checked by default depends on the distribution you use.
1864
1865 =item B<Header> I<Header>
1866
1867 A HTTP header to add to the request. Multiple headers are added if this option
1868 is specified more than once.
1869
1870 =item B<Post> I<Body>
1871
1872 Specifies that the HTTP operation should be a POST instead of a GET. The
1873 complete data to be posted is given as the argument.  This option will usually
1874 need to be accompanied by a B<Header> option to set an appropriate
1875 C<Content-Type> for the post body (e.g. to
1876 C<application/x-www-form-urlencoded>).
1877
1878 =item B<MeasureResponseTime> B<true>|B<false>
1879
1880 Measure response time for the request. If this setting is enabled, B<Match>
1881 blocks (see below) are optional. Disabled by default.
1882
1883 Beware that requests will get aborted if they take too long to complete. Adjust
1884 B<Timeout> accordingly if you expect B<MeasureResponseTime> to report such slow
1885 requests.
1886
1887 This option is similar to enabling the B<TotalTime> statistic but it's
1888 measured by collectd instead of cURL.
1889
1890 =item B<MeasureResponseCode> B<true>|B<false>
1891
1892 Measure response code for the request. If this setting is enabled, B<Match>
1893 blocks (see below) are optional. Disabled by default.
1894
1895 =item B<E<lt>StatisticsE<gt>>
1896
1897 One B<Statistics> block can be used to specify cURL statistics to be collected
1898 for each request to the remote web site. See the section "cURL Statistics"
1899 above for details. If this setting is enabled, B<Match> blocks (see below) are
1900 optional.
1901
1902 =item B<E<lt>MatchE<gt>>
1903
1904 One or more B<Match> blocks that define how to match information in the data
1905 returned by C<libcurl>. The C<curl> plugin uses the same infrastructure that's
1906 used by the C<tail> plugin, so please see the documentation of the C<tail>
1907 plugin below on how matches are defined. If the B<MeasureResponseTime> or
1908 B<MeasureResponseCode> options are set to B<true>, B<Match> blocks are
1909 optional.
1910
1911 =item B<Interval> I<Interval>
1912
1913 Sets the interval (in seconds) in which the values will be collected from this
1914 URL. By default the global B<Interval> setting will be used.
1915
1916 =item B<Timeout> I<Milliseconds>
1917
1918 The B<Timeout> option sets the overall timeout for HTTP requests to B<URL>, in
1919 milliseconds. By default, the configured B<Interval> is used to set the
1920 timeout. Prior to version 5.5.0, there was no timeout and requests could hang
1921 indefinitely. This legacy behaviour can be achieved by setting the value of
1922 B<Timeout> to 0.
1923
1924 If B<Timeout> is 0 or bigger than the B<Interval>, keep in mind that each slow
1925 network connection will stall one read thread. Adjust the B<ReadThreads> global
1926 setting accordingly to prevent this from blocking other plugins.
1927
1928 =back
1929
1930 =head2 Plugin C<curl_json>
1931
1932 The B<curl_json plugin> collects values from JSON data to be parsed by
1933 B<libyajl> (L<https://lloyd.github.io/yajl/>) retrieved via
1934 either B<libcurl> (L<http://curl.haxx.se/>) or read directly from a
1935 unix socket. The former can be used, for example, to collect values
1936 from CouchDB documents (which are stored JSON notation), and the
1937 latter to collect values from a uWSGI stats socket.
1938
1939 The following example will collect several values from the built-in
1940 C<_stats> runtime statistics module of I<CouchDB>
1941 (L<http://wiki.apache.org/couchdb/Runtime_Statistics>).
1942
1943   <Plugin curl_json>
1944     <URL "http://localhost:5984/_stats">
1945       Instance "httpd"
1946       <Key "httpd/requests/count">
1947         Type "http_requests"
1948       </Key>
1949
1950       <Key "httpd_request_methods/*/count">
1951         Type "http_request_methods"
1952       </Key>
1953
1954       <Key "httpd_status_codes/*/count">
1955         Type "http_response_codes"
1956       </Key>
1957     </URL>
1958   </Plugin>
1959
1960 This example will collect data directly from a I<uWSGI> "Stats Server" socket.
1961
1962   <Plugin curl_json>
1963     <Sock "/var/run/uwsgi.stats.sock">
1964       Instance "uwsgi"
1965       <Key "workers/*/requests">
1966         Type "http_requests"
1967       </Key>
1968
1969       <Key "workers/*/apps/*/requests">
1970         Type "http_requests"
1971       </Key>
1972     </Sock>
1973   </Plugin>
1974
1975 In the B<Plugin> block, there may be one or more B<URL> blocks, each
1976 defining a URL to be fetched via HTTP (using libcurl) or B<Sock>
1977 blocks defining a unix socket to read JSON from directly.  Each of
1978 these blocks may have one or more B<Key> blocks.
1979
1980 The B<Key> string argument must be in a path format. Each component is
1981 used to match the key from a JSON map or the index of an JSON
1982 array. If a path component of a B<Key> is a I<*>E<nbsp>wildcard, the
1983 values for all map keys or array indices will be collectd.
1984
1985 The following options are valid within B<URL> blocks:
1986
1987 =over 4
1988
1989 =item B<Host> I<Name>
1990
1991 Use I<Name> as the host name when submitting values. Defaults to the global
1992 host name setting.
1993
1994 =item B<Plugin> I<Plugin>
1995
1996 Use I<Plugin> as the plugin name when submitting values.
1997 Defaults to C<curl_json>.
1998
1999 =item B<Instance> I<Instance>
2000
2001 Sets the plugin instance to I<Instance>.
2002
2003 =item B<Interval> I<Interval>
2004
2005 Sets the interval (in seconds) in which the values will be collected from this
2006 URL. By default the global B<Interval> setting will be used.
2007
2008 =item B<User> I<Name>
2009
2010 =item B<Password> I<Password>
2011
2012 =item B<Digest> B<true>|B<false>
2013
2014 =item B<VerifyPeer> B<true>|B<false>
2015
2016 =item B<VerifyHost> B<true>|B<false>
2017
2018 =item B<CACert> I<file>
2019
2020 =item B<Header> I<Header>
2021
2022 =item B<Post> I<Body>
2023
2024 =item B<Timeout> I<Milliseconds>
2025
2026 These options behave exactly equivalent to the appropriate options of the
2027 I<cURL> plugin. Please see there for a detailed description.
2028
2029 =item B<E<lt>StatisticsE<gt>>
2030
2031 One B<Statistics> block can be used to specify cURL statistics to be collected
2032 for each request to the remote URL. See the section "cURL Statistics" above
2033 for details.
2034
2035 =back
2036
2037 The following options are valid within B<Key> blocks:
2038
2039 =over 4
2040
2041 =item B<Type> I<Type>
2042
2043 Sets the type used to dispatch the values to the daemon. Detailed information
2044 about types and their configuration can be found in L<types.db(5)>. This
2045 option is mandatory.
2046
2047 =item B<Instance> I<Instance>
2048
2049 Type-instance to use. Defaults to the current map key or current string array element value.
2050
2051 =back
2052
2053 =head2 Plugin C<curl_xml>
2054
2055 The B<curl_xml plugin> uses B<libcurl> (L<http://curl.haxx.se/>) and B<libxml2>
2056 (L<http://xmlsoft.org/>) to retrieve XML data via cURL.
2057
2058  <Plugin "curl_xml">
2059    <URL "http://localhost/stats.xml">
2060      Host "my_host"
2061      #Plugin "curl_xml"
2062      Instance "some_instance"
2063      User "collectd"
2064      Password "thaiNg0I"
2065      VerifyPeer true
2066      VerifyHost true
2067      CACert "/path/to/ca.crt"
2068      Header "X-Custom-Header: foobar"
2069      Post "foo=bar"
2070
2071      <XPath "table[@id=\"magic_level\"]/tr">
2072        Type "magic_level"
2073        #InstancePrefix "prefix-"
2074        InstanceFrom "td[1]"
2075        #PluginInstanceFrom "td[1]"
2076        ValuesFrom "td[2]/span[@class=\"level\"]"
2077      </XPath>
2078    </URL>
2079  </Plugin>
2080
2081 In the B<Plugin> block, there may be one or more B<URL> blocks, each defining a
2082 URL to be fetched using libcurl. Within each B<URL> block there are
2083 options which specify the connection parameters, for example authentication
2084 information, and one or more B<XPath> blocks.
2085
2086 Each B<XPath> block specifies how to get one type of information. The
2087 string argument must be a valid XPath expression which returns a list
2088 of "base elements". One value is dispatched for each "base element". The
2089 I<type instance> and values are looked up using further I<XPath> expressions
2090 that should be relative to the base element.
2091
2092 Within the B<URL> block the following options are accepted:
2093
2094 =over 4
2095
2096 =item B<Host> I<Name>
2097
2098 Use I<Name> as the host name when submitting values. Defaults to the global
2099 host name setting.
2100
2101 =item B<Plugin> I<Plugin>
2102
2103 Use I<Plugin> as the plugin name when submitting values.
2104 Defaults to 'curl_xml'.
2105
2106 =item B<Instance> I<Instance>
2107
2108 Use I<Instance> as the plugin instance when submitting values.
2109 May be overridden by B<PluginInstanceFrom> option inside B<XPath> blocks.
2110 Defaults to an empty string (no plugin instance).
2111
2112 =item B<Interval> I<Interval>
2113
2114 Sets the interval (in seconds) in which the values will be collected from this
2115 URL. By default the global B<Interval> setting will be used.
2116
2117 =item B<Namespace> I<Prefix> I<URL>
2118
2119 If an XPath expression references namespaces, they must be specified
2120 with this option. I<Prefix> is the "namespace prefix" used in the XML document.
2121 I<URL> is the "namespace name", an URI reference uniquely identifying the
2122 namespace. The option can be repeated to register multiple namespaces.
2123
2124 Examples:
2125
2126   Namespace "s" "http://schemas.xmlsoap.org/soap/envelope/"
2127   Namespace "m" "http://www.w3.org/1998/Math/MathML"
2128
2129 =item B<User> I<User>
2130
2131 =item B<Password> I<Password>
2132
2133 =item B<Digest> B<true>|B<false>
2134
2135 =item B<VerifyPeer> B<true>|B<false>
2136
2137 =item B<VerifyHost> B<true>|B<false>
2138
2139 =item B<CACert> I<CA Cert File>
2140
2141 =item B<Header> I<Header>
2142
2143 =item B<Post> I<Body>
2144
2145 =item B<Timeout> I<Milliseconds>
2146
2147 These options behave exactly equivalent to the appropriate options of the
2148 I<cURL plugin>. Please see there for a detailed description.
2149
2150 =item B<E<lt>StatisticsE<gt>>
2151
2152 One B<Statistics> block can be used to specify cURL statistics to be collected
2153 for each request to the remote URL. See the section "cURL Statistics" above
2154 for details.
2155
2156 =item E<lt>B<XPath> I<XPath-expression>E<gt>
2157
2158 Within each B<URL> block, there must be one or more B<XPath> blocks. Each
2159 B<XPath> block specifies how to get one type of information. The string
2160 argument must be a valid XPath expression which returns a list of "base
2161 elements". One value is dispatched for each "base element".
2162
2163 Within the B<XPath> block the following options are accepted:
2164
2165 =over 4
2166
2167 =item B<Type> I<Type>
2168
2169 Specifies the I<Type> used for submitting patches. This determines the number
2170 of values that are required / expected and whether the strings are parsed as
2171 signed or unsigned integer or as double values. See L<types.db(5)> for details.
2172 This option is required.
2173
2174 =item B<InstancePrefix> I<InstancePrefix>
2175
2176 Prefix the I<type instance> with I<InstancePrefix>. The values are simply
2177 concatenated together without any separator.
2178 This option is optional.
2179
2180 =item B<InstanceFrom> I<InstanceFrom>
2181
2182 Specifies a XPath expression to use for determining the I<type instance>. The
2183 XPath expression must return exactly one element. The element's value is then
2184 used as I<type instance>, possibly prefixed with I<InstancePrefix> (see above).
2185
2186 =item B<PluginInstanceFrom> I<PluginInstanceFrom>
2187
2188 Specifies a XPath expression to use for determining the I<plugin instance>. The
2189 XPath expression must return exactly one element. The element's value is then
2190 used as I<plugin instance>.
2191
2192 =back
2193
2194 If the "base XPath expression" (the argument to the B<XPath> block) returns
2195 exactly one argument, then I<InstanceFrom> and I<PluginInstanceFrom> may be omitted.
2196 Otherwise, at least one of I<InstanceFrom> or I<PluginInstanceFrom> is required.
2197
2198 =over 4
2199
2200 =item B<ValuesFrom> I<ValuesFrom> [I<ValuesFrom> ...]
2201
2202 Specifies one or more XPath expression to use for reading the values. The
2203 number of XPath expressions must match the number of data sources in the
2204 I<type> specified with B<Type> (see above). Each XPath expression must return
2205 exactly one element. The element's value is then parsed as a number and used as
2206 value for the appropriate value in the value list dispatched to the daemon.
2207 This option is required.
2208
2209 =back
2210
2211 =back
2212
2213 =head2 Plugin C<dbi>
2214
2215 This plugin uses the B<dbi> library (L<http://libdbi.sourceforge.net/>) to
2216 connect to various databases, execute I<SQL> statements and read back the
2217 results. I<dbi> is an acronym for "database interface" in case you were
2218 wondering about the name. You can configure how each column is to be
2219 interpreted and the plugin will generate one or more data sets from each row
2220 returned according to these rules.
2221
2222 Because the plugin is very generic, the configuration is a little more complex
2223 than those of other plugins. It usually looks something like this:
2224
2225   <Plugin dbi>
2226     <Query "out_of_stock">
2227       Statement "SELECT category, COUNT(*) AS value FROM products WHERE in_stock = 0 GROUP BY category"
2228       # Use with MySQL 5.0.0 or later
2229       MinVersion 50000
2230       <Result>
2231         Type "gauge"
2232         InstancePrefix "out_of_stock"
2233         InstancesFrom "category"
2234         ValuesFrom "value"
2235       </Result>
2236     </Query>
2237     <Database "product_information">
2238       #Plugin "warehouse"
2239       Driver "mysql"
2240       Interval 120
2241       DriverOption "host" "localhost"
2242       DriverOption "username" "collectd"
2243       DriverOption "password" "aZo6daiw"
2244       DriverOption "dbname" "prod_info"
2245       SelectDB "prod_info"
2246       Query "out_of_stock"
2247     </Database>
2248   </Plugin>
2249
2250 The configuration above defines one query with one result and one database. The
2251 query is then linked to the database with the B<Query> option I<within> the
2252 B<E<lt>DatabaseE<gt>> block. You can have any number of queries and databases
2253 and you can also use the B<Include> statement to split up the configuration
2254 file in multiple, smaller files. However, the B<E<lt>QueryE<gt>> block I<must>
2255 precede the B<E<lt>DatabaseE<gt>> blocks, because the file is interpreted from
2256 top to bottom!
2257
2258 The following is a complete list of options:
2259
2260 =head3 B<Query> blocks
2261
2262 Query blocks define I<SQL> statements and how the returned data should be
2263 interpreted. They are identified by the name that is given in the opening line
2264 of the block. Thus the name needs to be unique. Other than that, the name is
2265 not used in collectd.
2266
2267 In each B<Query> block, there is one or more B<Result> blocks. B<Result> blocks
2268 define which column holds which value or instance information. You can use
2269 multiple B<Result> blocks to create multiple values from one returned row. This
2270 is especially useful, when queries take a long time and sending almost the same
2271 query again and again is not desirable.
2272
2273 Example:
2274
2275   <Query "environment">
2276     Statement "select station, temperature, humidity from environment"
2277     <Result>
2278       Type "temperature"
2279       # InstancePrefix "foo"
2280       InstancesFrom "station"
2281       ValuesFrom "temperature"
2282     </Result>
2283     <Result>
2284       Type "humidity"
2285       InstancesFrom "station"
2286       ValuesFrom "humidity"
2287     </Result>
2288   </Query>
2289
2290 The following options are accepted:
2291
2292 =over 4
2293
2294 =item B<Statement> I<SQL>
2295
2296 Sets the statement that should be executed on the server. This is B<not>
2297 interpreted by collectd, but simply passed to the database server. Therefore,
2298 the SQL dialect that's used depends on the server collectd is connected to.
2299
2300 The query has to return at least two columns, one for the instance and one
2301 value. You cannot omit the instance, even if the statement is guaranteed to
2302 always return exactly one line. In that case, you can usually specify something
2303 like this:
2304
2305   Statement "SELECT \"instance\", COUNT(*) AS value FROM table"
2306
2307 (That works with MySQL but may not be valid SQL according to the spec. If you
2308 use a more strict database server, you may have to select from a dummy table or
2309 something.)
2310
2311 Please note that some databases, for example B<Oracle>, will fail if you
2312 include a semicolon at the end of the statement.
2313
2314 =item B<MinVersion> I<Version>
2315
2316 =item B<MaxVersion> I<Value>
2317
2318 Only use this query for the specified database version. You can use these
2319 options to provide multiple queries with the same name but with a slightly
2320 different syntax. The plugin will use only those queries, where the specified
2321 minimum and maximum versions fit the version of the database in use.
2322
2323 The database version is determined by C<dbi_conn_get_engine_version>, see the
2324 L<libdbi documentation|http://libdbi.sourceforge.net/docs/programmers-guide/reference-conn.html#DBI-CONN-GET-ENGINE-VERSION>
2325 for details. Basically, each part of the version is assumed to be in the range
2326 from B<00> to B<99> and all dots are removed. So version "4.1.2" becomes
2327 "40102", version "5.0.42" becomes "50042".
2328
2329 B<Warning:> The plugin will use B<all> matching queries, so if you specify
2330 multiple queries with the same name and B<overlapping> ranges, weird stuff will
2331 happen. Don't to it! A valid example would be something along these lines:
2332
2333   MinVersion 40000
2334   MaxVersion 49999
2335   ...
2336   MinVersion 50000
2337   MaxVersion 50099
2338   ...
2339   MinVersion 50100
2340   # No maximum
2341
2342 In the above example, there are three ranges that don't overlap. The last one
2343 goes from version "5.1.0" to infinity, meaning "all later versions". Versions
2344 before "4.0.0" are not specified.
2345
2346 =item B<Type> I<Type>
2347
2348 The B<type> that's used for each line returned. See L<types.db(5)> for more
2349 details on how types are defined. In short: A type is a predefined layout of
2350 data and the number of values and type of values has to match the type
2351 definition.
2352
2353 If you specify "temperature" here, you need exactly one gauge column. If you
2354 specify "if_octets", you will need two counter columns. See the B<ValuesFrom>
2355 setting below.
2356
2357 There must be exactly one B<Type> option inside each B<Result> block.
2358
2359 =item B<InstancePrefix> I<prefix>
2360
2361 Prepends I<prefix> to the type instance. If B<InstancesFrom> (see below) is not
2362 given, the string is simply copied. If B<InstancesFrom> is given, I<prefix> and
2363 all strings returned in the appropriate columns are concatenated together,
2364 separated by dashes I<("-")>.
2365
2366 =item B<InstancesFrom> I<column0> [I<column1> ...]
2367
2368 Specifies the columns whose values will be used to create the "type-instance"
2369 for each row. If you specify more than one column, the value of all columns
2370 will be joined together with dashes I<("-")> as separation characters.
2371
2372 The plugin itself does not check whether or not all built instances are
2373 different. It's your responsibility to assure that each is unique. This is
2374 especially true, if you do not specify B<InstancesFrom>: B<You> have to make
2375 sure that only one row is returned in this case.
2376
2377 If neither B<InstancePrefix> nor B<InstancesFrom> is given, the type-instance
2378 will be empty.
2379
2380 =item B<ValuesFrom> I<column0> [I<column1> ...]
2381
2382 Names the columns whose content is used as the actual data for the data sets
2383 that are dispatched to the daemon. How many such columns you need is determined
2384 by the B<Type> setting above. If you specify too many or not enough columns,
2385 the plugin will complain about that and no data will be submitted to the
2386 daemon.
2387
2388 The actual data type in the columns is not that important. The plugin will
2389 automatically cast the values to the right type if it know how to do that. So
2390 it should be able to handle integer an floating point types, as well as strings
2391 (if they include a number at the beginning).
2392
2393 There must be at least one B<ValuesFrom> option inside each B<Result> block.
2394
2395 =item B<MetadataFrom> [I<column0> I<column1> ...]
2396
2397 Names the columns whose content is used as metadata for the data sets
2398 that are dispatched to the daemon.
2399
2400 The actual data type in the columns is not that important. The plugin will
2401 automatically cast the values to the right type if it know how to do that. So
2402 it should be able to handle integer an floating point types, as well as strings
2403 (if they include a number at the beginning).
2404
2405 =back
2406
2407 =head3 B<Database> blocks
2408
2409 Database blocks define a connection to a database and which queries should be
2410 sent to that database. Since the used "dbi" library can handle a wide variety
2411 of databases, the configuration is very generic. If in doubt, refer to libdbi's
2412 documentationE<nbsp>- we stick as close to the terminology used there.
2413
2414 Each database needs a "name" as string argument in the starting tag of the
2415 block. This name will be used as "PluginInstance" in the values submitted to
2416 the daemon. Other than that, that name is not used.
2417
2418 =over 4
2419
2420 =item B<Plugin> I<Plugin>
2421
2422 Use I<Plugin> as the plugin name when submitting query results from
2423 this B<Database>. Defaults to C<dbi>.
2424
2425 =item B<Interval> I<Interval>
2426
2427 Sets the interval (in seconds) in which the values will be collected from this
2428 database. By default the global B<Interval> setting will be used.
2429
2430 =item B<Driver> I<Driver>
2431
2432 Specifies the driver to use to connect to the database. In many cases those
2433 drivers are named after the database they can connect to, but this is not a
2434 technical necessity. These drivers are sometimes referred to as "DBD",
2435 B<D>ataB<B>ase B<D>river, and some distributions ship them in separate
2436 packages. Drivers for the "dbi" library are developed by the B<libdbi-drivers>
2437 project at L<http://libdbi-drivers.sourceforge.net/>.
2438
2439 You need to give the driver name as expected by the "dbi" library here. You
2440 should be able to find that in the documentation for each driver. If you
2441 mistype the driver name, the plugin will dump a list of all known driver names
2442 to the log.
2443
2444 =item B<DriverOption> I<Key> I<Value>
2445
2446 Sets driver-specific options. What option a driver supports can be found in the
2447 documentation for each driver, somewhere at
2448 L<http://libdbi-drivers.sourceforge.net/>. However, the options "host",
2449 "username", "password", and "dbname" seem to be deE<nbsp>facto standards.
2450
2451 DBDs can register two types of options: String options and numeric options. The
2452 plugin will use the C<dbi_conn_set_option> function when the configuration
2453 provides a string and the C<dbi_conn_require_option_numeric> function when the
2454 configuration provides a number. So these two lines will actually result in
2455 different calls being used:
2456
2457   DriverOption "Port" 1234      # numeric
2458   DriverOption "Port" "1234"    # string
2459
2460 Unfortunately, drivers are not too keen to report errors when an unknown option
2461 is passed to them, so invalid settings here may go unnoticed. This is not the
2462 plugin's fault, it will report errors if it gets them from the libraryE<nbsp>/
2463 the driver. If a driver complains about an option, the plugin will dump a
2464 complete list of all options understood by that driver to the log. There is no
2465 way to programmatically find out if an option expects a string or a numeric
2466 argument, so you will have to refer to the appropriate DBD's documentation to
2467 find this out. Sorry.
2468
2469 =item B<SelectDB> I<Database>
2470
2471 In some cases, the database name you connect with is not the database name you
2472 want to use for querying data. If this option is set, the plugin will "select"
2473 (switch to) that database after the connection is established.
2474
2475 =item B<Query> I<QueryName>
2476
2477 Associates the query named I<QueryName> with this database connection. The
2478 query needs to be defined I<before> this statement, i.E<nbsp>e. all query
2479 blocks you want to refer to must be placed above the database block you want to
2480 refer to them from.
2481
2482 =item B<Host> I<Hostname>
2483
2484 Sets the B<host> field of I<value lists> to I<Hostname> when dispatching
2485 values. Defaults to the global hostname setting.
2486
2487 =back
2488
2489 =head2 Plugin C<df>
2490
2491 =over 4
2492
2493 =item B<Device> I<Device>
2494
2495 Select partitions based on the devicename.
2496
2497 See F</"IGNORELISTS"> for details.
2498
2499 =item B<MountPoint> I<Directory>
2500
2501 Select partitions based on the mountpoint.
2502
2503 See F</"IGNORELISTS"> for details.
2504
2505 =item B<FSType> I<FSType>
2506
2507 Select partitions based on the filesystem type.
2508
2509 See F</"IGNORELISTS"> for details.
2510
2511 =item B<IgnoreSelected> B<true>|B<false>
2512
2513 Invert the selection: If set to true, all partitions B<except> the ones that
2514 match any one of the criteria are collected. By default only selected
2515 partitions are collected if a selection is made. If no selection is configured
2516 at all, B<all> partitions are selected.
2517
2518 =item B<ReportByDevice> B<true>|B<false>
2519
2520 Report using the device name rather than the mountpoint. i.e. with this I<false>,
2521 (the default), it will report a disk as "root", but with it I<true>, it will be
2522 "sda1" (or whichever).
2523
2524 =item B<ReportInodes> B<true>|B<false>
2525
2526 Enables or disables reporting of free, reserved and used inodes. Defaults to
2527 inode collection being disabled.
2528
2529 Enable this option if inodes are a scarce resource for you, usually because
2530 many small files are stored on the disk. This is a usual scenario for mail
2531 transfer agents and web caches.
2532
2533 =item B<ValuesAbsolute> B<true>|B<false>
2534
2535 Enables or disables reporting of free and used disk space in 1K-blocks.
2536 Defaults to B<true>.
2537
2538 =item B<ValuesPercentage> B<false>|B<true>
2539
2540 Enables or disables reporting of free and used disk space in percentage.
2541 Defaults to B<false>.
2542
2543 This is useful for deploying I<collectd> on the cloud, where machines with
2544 different disk size may exist. Then it is more practical to configure
2545 thresholds based on relative disk size.
2546
2547 =back
2548
2549 =head2 Plugin C<disk>
2550
2551 The C<disk> plugin collects information about the usage of physical disks and
2552 logical disks (partitions). Values collected are the number of octets written
2553 to and read from a disk or partition, the number of read/write operations
2554 issued to the disk and a rather complex "time" it took for these commands to be
2555 issued.
2556
2557 Using the following two options you can ignore some disks or configure the
2558 collection only of specific disks.
2559
2560 =over 4
2561
2562 =item B<Disk> I<Name>
2563
2564 Select the disk I<Name>. Whether it is collected or ignored depends on the
2565 B<IgnoreSelected> setting, see below. As with other plugins that use the
2566 daemon's ignorelist functionality, a string that starts and ends with a slash
2567 is interpreted as a regular expression. Examples:
2568
2569   Disk "sdd"
2570   Disk "/hda[34]/"
2571
2572 See F</"IGNORELISTS"> for details.
2573
2574 =item B<IgnoreSelected> B<true>|B<false>
2575
2576 Sets whether selected disks, i.E<nbsp>e. the ones matches by any of the B<Disk>
2577 statements, are ignored or if all other disks are ignored. The behavior
2578 (hopefully) is intuitive: If no B<Disk> option is configured, all disks are
2579 collected. If at least one B<Disk> option is given and no B<IgnoreSelected> or
2580 set to B<false>, B<only> matching disks will be collected. If B<IgnoreSelected>
2581 is set to B<true>, all disks are collected B<except> the ones matched.
2582
2583 =item B<UseBSDName> B<true>|B<false>
2584
2585 Whether to use the device's "BSD Name", on MacE<nbsp>OSE<nbsp>X, instead of the
2586 default major/minor numbers. Requires collectd to be built with Apple's
2587 IOKitLib support.
2588
2589 =item B<UdevNameAttr> I<Attribute>
2590
2591 Attempt to override disk instance name with the value of a specified udev
2592 attribute when built with B<libudev>.  If the attribute is not defined for the
2593 given device, the default name is used. Example:
2594
2595   UdevNameAttr "DM_NAME"
2596
2597 =back
2598
2599 =head2 Plugin C<dns>
2600
2601 =over 4
2602
2603 =item B<Interface> I<Interface>
2604
2605 The dns plugin uses B<libpcap> to capture dns traffic and analyzes it. This
2606 option sets the interface that should be used. If this option is not set, or
2607 set to "any", the plugin will try to get packets from B<all> interfaces. This
2608 may not work on certain platforms, such as MacE<nbsp>OSE<nbsp>X.
2609
2610 =item B<IgnoreSource> I<IP-address>
2611
2612 Ignore packets that originate from this address.
2613
2614 =item B<SelectNumericQueryTypes> B<true>|B<false>
2615
2616 Enabled by default, collects unknown (and thus presented as numeric only) query types.
2617
2618 =back
2619
2620 =head2 Plugin C<dpdkevents>
2621
2622 The I<dpdkevents plugin> collects events from DPDK such as link status of
2623 network ports and Keep Alive status of DPDK logical cores.
2624 In order to get Keep Alive events following requirements must be met:
2625 - DPDK >= 16.07
2626 - support for Keep Alive implemented in DPDK application. More details can
2627 be found here: http://dpdk.org/doc/guides/sample_app_ug/keep_alive.html
2628
2629 B<Synopsis:>
2630
2631  <Plugin "dpdkevents">
2632    <EAL>
2633      Coremask "0x1"
2634      MemoryChannels "4"
2635      FilePrefix "rte"
2636    </EAL>
2637    <Event "link_status">
2638      SendEventsOnUpdate true
2639      EnabledPortMask 0xffff
2640      PortName "interface1"
2641      PortName "interface2"
2642      SendNotification false
2643    </Event>
2644    <Event "keep_alive">
2645      SendEventsOnUpdate true
2646      LCoreMask "0xf"
2647      KeepAliveShmName "/dpdk_keepalive_shm_name"
2648      SendNotification false
2649    </Event>
2650  </Plugin>
2651
2652 B<Options:>
2653
2654
2655 =head3 The EAL block
2656
2657 =over 4
2658
2659 =item B<Coremask> I<Mask>
2660
2661 =item B<Memorychannels> I<Channels>
2662
2663 Number of memory channels per processor socket.
2664
2665 =item B<FilePrefix> I<File>
2666
2667 The prefix text used for hugepage filenames. The filename will be set to
2668 /var/run/.<prefix>_config where prefix is what is passed in by the user.
2669
2670 =back
2671
2672 =head3 The Event block
2673
2674 The B<Event> block defines configuration for specific event. It accepts a
2675 single argument which specifies the name of the event.
2676
2677 =head4 Link Status event
2678
2679 =over 4
2680
2681 =item B<SendEventOnUpdate> I<true|false>
2682
2683 If set to true link status value will be dispatched only when it is
2684 different from previously read value. This is an optional argument - default
2685 value is true.
2686
2687 =item B<EnabledPortMask> I<Mask>
2688
2689 A hexidecimal bit mask of the DPDK ports which should be enabled. A mask
2690 of 0x0 means that all ports will be disabled. A bitmask of all F's means
2691 that all ports will be enabled. This is an optional argument - by default
2692 all ports are enabled.
2693
2694 =item B<PortName> I<Name>
2695
2696 A string containing an optional name for the enabled DPDK ports. Each PortName
2697 option should contain only one port name; specify as many PortName options as
2698 desired. Default naming convention will be used if PortName is blank. If there
2699 are less PortName options than there are enabled ports, the default naming
2700 convention will be used for the additional ports.
2701
2702 =item B<SendNotification> I<true|false>
2703
2704 If set to true, link status notifications are sent, instead of link status
2705 being collected as a statistic. This is an optional argument - default
2706 value is false.
2707
2708 =back
2709
2710 =head4 Keep Alive event
2711
2712 =over 4
2713
2714 =item B<SendEventOnUpdate> I<true|false>
2715
2716 If set to true keep alive value will be dispatched only when it is
2717 different from previously read value. This is an optional argument - default
2718 value is true.
2719
2720 =item B<LCoreMask> I<Mask>
2721
2722 An hexadecimal bit mask of the logical cores to monitor keep alive state.
2723
2724 =item B<KeepAliveShmName> I<Name>
2725
2726 Shared memory name identifier that is used by secondary process to monitor
2727 the keep alive cores state.
2728
2729 =item B<SendNotification> I<true|false>
2730
2731 If set to true, keep alive notifications are sent, instead of keep alive
2732 information being collected as a statistic. This is an optional
2733 argument - default value is false.
2734
2735 =back
2736
2737 =head2 Plugin C<dpdkstat>
2738
2739 The I<dpdkstat plugin> collects information about DPDK interfaces using the
2740 extended NIC stats API in DPDK.
2741
2742 B<Synopsis:>
2743
2744  <Plugin "dpdkstat">
2745    <EAL>
2746      Coremask "0x4"
2747      MemoryChannels "4"
2748      FilePrefix "rte"
2749      SocketMemory "1024"
2750      LogLevel "7"
2751      RteDriverLibPath "/usr/lib/dpdk-pmd"
2752    </EAL>
2753    SharedMemObj "dpdk_collectd_stats_0"
2754    EnabledPortMask 0xffff
2755    PortName "interface1"
2756    PortName "interface2"
2757  </Plugin>
2758
2759 B<Options:>
2760
2761 =head3 The EAL block
2762
2763 =over 4
2764
2765 =item B<Coremask> I<Mask>
2766
2767 A string containing an hexadecimal bit mask of the cores to run on. Note that
2768 core numbering can change between platforms and should be determined beforehand.
2769
2770 =item B<Memorychannels> I<Channels>
2771
2772 A string containing a number of memory channels per processor socket.
2773
2774 =item B<FilePrefix> I<File>
2775
2776 The prefix text used for hugepage filenames. The filename will be set to
2777 /var/run/.<prefix>_config where prefix is what is passed in by the user.
2778
2779 =item B<SocketMemory> I<MB>
2780
2781 A string containing amount of Memory to allocate from hugepages on specific
2782 sockets in MB. This is an optional value.
2783
2784 =item B<LogLevel> I<LogLevel_number>
2785
2786 A string containing log level number. This parameter is optional.
2787 If parameter is not present then default value "7" - (INFO) is used.
2788 Value "8" - (DEBUG) can be set to enable debug traces.
2789
2790 =item B<RteDriverLibPath> I<Path>
2791
2792 A string containing path to shared pmd driver lib or path to directory,
2793 where shared pmd driver libs are available. This parameter is optional.
2794 This parameter enable loading of shared pmd driver libs from defined path.
2795 E.g.: "/usr/lib/dpdk-pmd/librte_pmd_i40e.so"
2796 or    "/usr/lib/dpdk-pmd"
2797
2798 =back
2799
2800 =over 3
2801
2802 =item B<SharedMemObj> I<Mask>
2803
2804 A string containing the name of the shared memory object that should be used to
2805 share stats from the DPDK secondary process to the collectd dpdkstat plugin.
2806 Defaults to dpdk_collectd_stats if no other value is configured.
2807
2808 =item B<EnabledPortMask> I<Mask>
2809
2810 A hexidecimal bit mask of the DPDK ports which should be enabled. A mask
2811 of 0x0 means that all ports will be disabled. A bitmask of all Fs means
2812 that all ports will be enabled. This is an optional argument - default
2813 is all ports enabled.
2814
2815 =item B<PortName> I<Name>
2816
2817 A string containing an optional name for the enabled DPDK ports. Each PortName
2818 option should contain only one port name; specify as many PortName options as
2819 desired. Default naming convention will be used if PortName is blank. If there
2820 are less PortName options than there are enabled ports, the default naming
2821 convention will be used for the additional ports.
2822
2823 =back
2824
2825 =head2 Plugin C<email>
2826
2827 =over 4
2828
2829 =item B<SocketFile> I<Path>
2830
2831 Sets the socket-file which is to be created.
2832
2833 =item B<SocketGroup> I<Group>
2834
2835 If running as root change the group of the UNIX-socket after it has been
2836 created. Defaults to B<collectd>.
2837
2838 =item B<SocketPerms> I<Permissions>
2839
2840 Change the file permissions of the UNIX-socket after it has been created. The
2841 permissions must be given as a numeric, octal value as you would pass to
2842 L<chmod(1)>. Defaults to B<0770>.
2843
2844 =item B<MaxConns> I<Number>
2845
2846 Sets the maximum number of connections that can be handled in parallel. Since
2847 this many threads will be started immediately setting this to a very high
2848 value will waste valuable resources. Defaults to B<5> and will be forced to be
2849 at most B<16384> to prevent typos and dumb mistakes.
2850
2851 =back
2852
2853 =head2 Plugin C<ethstat>
2854
2855 The I<ethstat plugin> collects information about network interface cards (NICs)
2856 by talking directly with the underlying kernel driver using L<ioctl(2)>.
2857
2858 B<Synopsis:>
2859
2860  <Plugin "ethstat">
2861    Interface "eth0"
2862    Map "rx_csum_offload_errors" "if_rx_errors" "checksum_offload"
2863    Map "multicast" "if_multicast"
2864  </Plugin>
2865
2866 B<Options:>
2867
2868 =over 4
2869
2870 =item B<Interface> I<Name>
2871
2872 Collect statistical information about interface I<Name>.
2873
2874 =item B<Map> I<Name> I<Type> [I<TypeInstance>]
2875
2876 By default, the plugin will submit values as type C<derive> and I<type
2877 instance> set to I<Name>, the name of the metric as reported by the driver. If
2878 an appropriate B<Map> option exists, the given I<Type> and, optionally,
2879 I<TypeInstance> will be used.
2880
2881 =item B<MappedOnly> B<true>|B<false>
2882
2883 When set to B<true>, only metrics that can be mapped to a I<type> will be
2884 collected, all other metrics will be ignored. Defaults to B<false>.
2885
2886 =back
2887
2888 =head2 Plugin C<exec>
2889
2890 Please make sure to read L<collectd-exec(5)> before using this plugin. It
2891 contains valuable information on when the executable is executed and the
2892 output that is expected from it.
2893
2894 =over 4
2895
2896 =item B<Exec> I<User>[:[I<Group>]] I<Executable> [I<E<lt>argE<gt>> [I<E<lt>argE<gt>> ...]]
2897
2898 =item B<NotificationExec> I<User>[:[I<Group>]] I<Executable> [I<E<lt>argE<gt>> [I<E<lt>argE<gt>> ...]]
2899
2900 Execute the executable I<Executable> as user I<User>. If the user name is
2901 followed by a colon and a group name, the effective group is set to that group.
2902 The real group and saved-set group will be set to the default group of that
2903 user. If no group is given the effective group ID will be the same as the real
2904 group ID.
2905
2906 Please note that in order to change the user and/or group the daemon needs
2907 superuser privileges. If the daemon is run as an unprivileged user you must
2908 specify the same user/group here. If the daemon is run with superuser
2909 privileges, you must supply a non-root user here.
2910
2911 The executable may be followed by optional arguments that are passed to the
2912 program. Please note that due to the configuration parsing numbers and boolean
2913 values may be changed. If you want to be absolutely sure that something is
2914 passed as-is please enclose it in quotes.
2915
2916 The B<Exec> and B<NotificationExec> statements change the semantics of the
2917 programs executed, i.E<nbsp>e. the data passed to them and the response
2918 expected from them. This is documented in great detail in L<collectd-exec(5)>.
2919
2920 =back
2921
2922 =head2 Plugin C<fhcount>
2923
2924 The C<fhcount> plugin provides statistics about used, unused and total number of
2925 file handles on Linux.
2926
2927 The I<fhcount plugin> provides the following configuration options:
2928
2929 =over 4
2930
2931 =item B<ValuesAbsolute> B<true>|B<false>
2932
2933 Enables or disables reporting of file handles usage in absolute numbers,
2934 e.g. file handles used. Defaults to B<true>.
2935
2936 =item B<ValuesPercentage> B<false>|B<true>
2937
2938 Enables or disables reporting of file handles usage in percentages, e.g.
2939 percent of file handles used. Defaults to B<false>.
2940
2941 =back
2942
2943 =head2 Plugin C<filecount>
2944
2945 The C<filecount> plugin counts the number of files in a certain directory (and
2946 its subdirectories) and their combined size. The configuration is very straight
2947 forward:
2948
2949   <Plugin "filecount">
2950     <Directory "/var/qmail/queue/mess">
2951       Instance "qmail-message"
2952     </Directory>
2953     <Directory "/var/qmail/queue/todo">
2954       Instance "qmail-todo"
2955     </Directory>
2956     <Directory "/var/lib/php5">
2957       Instance "php5-sessions"
2958       Name "sess_*"
2959     </Directory>
2960   </Plugin>
2961
2962 The example above counts the number of files in QMail's queue directories and
2963 the number of PHP5 sessions. Jfiy: The "todo" queue holds the messages that
2964 QMail has not yet looked at, the "message" queue holds the messages that were
2965 classified into "local" and "remote".
2966
2967 As you can see, the configuration consists of one or more C<Directory> blocks,
2968 each of which specifies a directory in which to count the files. Within those
2969 blocks, the following options are recognized:
2970
2971 =over 4
2972
2973 =item B<Plugin> I<Plugin>
2974
2975 Use I<Plugin> as the plugin name when submitting values.
2976 Defaults to B<filecount>.
2977
2978 =item B<Instance> I<Instance>
2979
2980 Sets the plugin instance to I<Instance>. If not given, the instance is set to
2981 the directory name with all slashes replaced by underscores and all leading
2982 underscores removed. Empty value is allowed.
2983
2984 =item B<Name> I<Pattern>
2985
2986 Only count files that match I<Pattern>, where I<Pattern> is a shell-like
2987 wildcard as understood by L<fnmatch(3)>. Only the B<filename> is checked
2988 against the pattern, not the entire path. In case this makes it easier for you:
2989 This option has been named after the B<-name> parameter to L<find(1)>.
2990
2991 =item B<MTime> I<Age>
2992
2993 Count only files of a specific age: If I<Age> is greater than zero, only files
2994 that haven't been touched in the last I<Age> seconds are counted. If I<Age> is
2995 a negative number, this is inversed. For example, if B<-60> is specified, only
2996 files that have been modified in the last minute will be counted.
2997
2998 The number can also be followed by a "multiplier" to easily specify a larger
2999 timespan. When given in this notation, the argument must in quoted, i.E<nbsp>e.
3000 must be passed as string. So the B<-60> could also be written as B<"-1m"> (one
3001 minute). Valid multipliers are C<s> (second), C<m> (minute), C<h> (hour), C<d>
3002 (day), C<w> (week), and C<y> (year). There is no "month" multiplier. You can
3003 also specify fractional numbers, e.E<nbsp>g. B<"0.5d"> is identical to
3004 B<"12h">.
3005
3006 =item B<Size> I<Size>
3007
3008 Count only files of a specific size. When I<Size> is a positive number, only
3009 files that are at least this big are counted. If I<Size> is a negative number,
3010 this is inversed, i.E<nbsp>e. only files smaller than the absolute value of
3011 I<Size> are counted.
3012
3013 As with the B<MTime> option, a "multiplier" may be added. For a detailed
3014 description see above. Valid multipliers here are C<b> (byte), C<k> (kilobyte),
3015 C<m> (megabyte), C<g> (gigabyte), C<t> (terabyte), and C<p> (petabyte). Please
3016 note that there are 1000 bytes in a kilobyte, not 1024.
3017
3018 =item B<Recursive> I<true>|I<false>
3019
3020 Controls whether or not to recurse into subdirectories. Enabled by default.
3021
3022 =item B<IncludeHidden> I<true>|I<false>
3023
3024 Controls whether or not to include "hidden" files and directories in the count.
3025 "Hidden" files and directories are those, whose name begins with a dot.
3026 Defaults to I<false>, i.e. by default hidden files and directories are ignored.
3027
3028 =item B<RegularOnly> I<true>|I<false>
3029
3030 Controls whether or not to include only regular files in the count.
3031 Defaults to I<true>, i.e. by default non regular files are ignored.
3032
3033 =item B<FilesSizeType> I<Type>
3034
3035 Sets the type used to dispatch files combined size. Empty value ("") disables
3036 reporting. Defaults to B<bytes>.
3037
3038 =item B<FilesCountType> I<Type>
3039
3040 Sets the type used to dispatch number of files. Empty value ("") disables
3041 reporting. Defaults to B<files>.
3042
3043 =item B<TypeInstance> I<Instance>
3044
3045 Sets the I<type instance> used to dispatch values. Defaults to an empty string
3046 (no plugin instance).
3047
3048 =back
3049
3050 =head2 Plugin C<GenericJMX>
3051
3052 The I<GenericJMX plugin> is written in I<Java> and therefore documented in
3053 L<collectd-java(5)>.
3054
3055 =head2 Plugin C<gmond>
3056
3057 The I<gmond> plugin received the multicast traffic sent by B<gmond>, the
3058 statistics collection daemon of Ganglia. Mappings for the standard "metrics"
3059 are built-in, custom mappings may be added via B<Metric> blocks, see below.
3060
3061 Synopsis:
3062
3063  <Plugin "gmond">
3064    MCReceiveFrom "239.2.11.71" "8649"
3065    <Metric "swap_total">
3066      Type "swap"
3067      TypeInstance "total"
3068      DataSource "value"
3069    </Metric>
3070    <Metric "swap_free">
3071      Type "swap"
3072      TypeInstance "free"
3073      DataSource "value"
3074    </Metric>
3075  </Plugin>
3076
3077 The following metrics are built-in:
3078
3079 =over 4
3080
3081 =item *
3082
3083 load_one, load_five, load_fifteen
3084
3085 =item *
3086
3087 cpu_user, cpu_system, cpu_idle, cpu_nice, cpu_wio
3088
3089 =item *
3090
3091 mem_free, mem_shared, mem_buffers, mem_cached, mem_total
3092
3093 =item *
3094
3095 bytes_in, bytes_out
3096
3097 =item *
3098
3099 pkts_in, pkts_out
3100
3101 =back
3102
3103 Available configuration options:
3104
3105 =over 4
3106
3107 =item B<MCReceiveFrom> I<MCGroup> [I<Port>]
3108
3109 Sets sets the multicast group and UDP port to which to subscribe.
3110
3111 Default: B<239.2.11.71>E<nbsp>/E<nbsp>B<8649>
3112
3113 =item E<lt>B<Metric> I<Name>E<gt>
3114
3115 These blocks add a new metric conversion to the internal table. I<Name>, the
3116 string argument to the B<Metric> block, is the metric name as used by Ganglia.
3117
3118 =over 4
3119
3120 =item B<Type> I<Type>
3121
3122 Type to map this metric to. Required.
3123
3124 =item B<TypeInstance> I<Instance>
3125
3126 Type-instance to use. Optional.
3127
3128 =item B<DataSource> I<Name>
3129
3130 Data source to map this metric to. If the configured type has exactly one data
3131 source, this is optional. Otherwise the option is required.
3132
3133 =back
3134
3135 =back
3136
3137 =head2 Plugin C<gps>
3138
3139 The C<gps plugin> connects to gpsd on the host machine.
3140 The host, port, timeout and pause are configurable.
3141
3142 This is useful if you run an NTP server using a GPS for source and you want to
3143 monitor it.
3144
3145 Mind your GPS must send $--GSA for having the data reported!
3146
3147 The following elements are collected:
3148
3149 =over 4
3150
3151 =item B<satellites>
3152
3153 Number of satellites used for fix (type instance "used") and in view (type
3154 instance "visible"). 0 means no GPS satellites are visible.
3155
3156 =item B<dilution_of_precision>
3157
3158 Vertical and horizontal dilution (type instance "horizontal" or "vertical").
3159 It should be between 0 and 3.
3160 Look at the documentation of your GPS to know more.
3161
3162 =back
3163
3164 Synopsis:
3165
3166  LoadPlugin gps
3167  <Plugin "gps">
3168    # Connect to localhost on gpsd regular port:
3169    Host "127.0.0.1"
3170    Port "2947"
3171    # 15 ms timeout
3172    Timeout 0.015
3173    # PauseConnect of 5 sec. between connection attempts.
3174    PauseConnect 5
3175  </Plugin>
3176
3177 Available configuration options:
3178
3179 =over 4
3180
3181 =item B<Host> I<Host>
3182
3183 The host on which gpsd daemon runs. Defaults to B<localhost>.
3184
3185 =item B<Port> I<Port>
3186
3187 Port to connect to gpsd on the host machine. Defaults to B<2947>.
3188
3189 =item B<Timeout> I<Seconds>
3190
3191 Timeout in seconds (default 0.015 sec).
3192
3193 The GPS data stream is fetch by the plugin form the daemon.
3194 It waits for data to be available, if none arrives it times out
3195 and loop for another reading.
3196 Mind to put a low value gpsd expects value in the micro-seconds area
3197 (recommended is 500 us) since the waiting function is blocking.
3198 Value must be between 500 us and 5 sec., if outside that range the
3199 default value is applied.
3200
3201 This only applies from gpsd release-2.95.
3202
3203 =item B<PauseConnect> I<Seconds>
3204
3205 Pause to apply between attempts of connection to gpsd in seconds (default 5 sec).
3206
3207 =back
3208
3209 =head2 Plugin C<grpc>
3210
3211 The I<grpc> plugin provides an RPC interface to submit values to or query
3212 values from collectd based on the open source gRPC framework. It exposes an
3213 end-point for dispatching values to the daemon.
3214
3215 The B<gRPC> homepage can be found at L<https://grpc.io/>.
3216
3217 =over 4
3218
3219 =item B<Server> I<Host> I<Port>
3220
3221 The B<Server> statement sets the address of a server to which to send metrics
3222 via the C<DispatchValues> function.
3223
3224 The argument I<Host> may be a hostname, an IPv4 address, or an IPv6 address.
3225
3226 Optionally, B<Server> may be specified as a configuration block which supports
3227 the following options:
3228
3229 =over 4
3230
3231 =item B<EnableSSL> B<false>|B<true>
3232
3233 Whether to require SSL for outgoing connections. Default: false.
3234
3235 =item B<SSLCACertificateFile> I<Filename>
3236
3237 =item B<SSLCertificateFile> I<Filename>
3238
3239 =item B<SSLCertificateKeyFile> I<Filename>
3240
3241 Filenames specifying SSL certificate and key material to be used with SSL
3242 connections.
3243
3244 =back
3245
3246 =item B<Listen> I<Host> I<Port>
3247
3248 The B<Listen> statement sets the network address to bind to. When multiple
3249 statements are specified, the daemon will bind to all of them. If none are
3250 specified, it defaults to B<0.0.0.0:50051>.
3251
3252 The argument I<Host> may be a hostname, an IPv4 address, or an IPv6 address.
3253
3254 Optionally, B<Listen> may be specified as a configuration block which
3255 supports the following options:
3256
3257 =over 4
3258
3259 =item B<EnableSSL> I<true>|I<false>
3260
3261 Whether to enable SSL for incoming connections. Default: false.
3262
3263 =item B<SSLCACertificateFile> I<Filename>
3264
3265 =item B<SSLCertificateFile> I<Filename>
3266
3267 =item B<SSLCertificateKeyFile> I<Filename>
3268
3269 Filenames specifying SSL certificate and key material to be used with SSL
3270 connections.
3271
3272 =item B<VerifyPeer> B<true>|B<false>
3273
3274 When enabled, a valid client certificate is required to connect to the server.
3275 When disabled, a client certifiacte is not requested and any unsolicited client
3276 certificate is accepted.
3277 Enabled by default.
3278
3279 =back
3280
3281 =back
3282
3283 =head2 Plugin C<hddtemp>
3284
3285 To get values from B<hddtemp> collectd connects to B<localhost> (127.0.0.1),
3286 port B<7634/tcp>. The B<Host> and B<Port> options can be used to change these
3287 default values, see below. C<hddtemp> has to be running to work correctly. If
3288 C<hddtemp> is not running timeouts may appear which may interfere with other
3289 statistics..
3290
3291 The B<hddtemp> homepage can be found at
3292 L<http://www.guzu.net/linux/hddtemp.php>.
3293
3294 =over 4
3295
3296 =item B<Host> I<Hostname>
3297
3298 Hostname to connect to. Defaults to B<127.0.0.1>.
3299
3300 =item B<Port> I<Port>
3301
3302 TCP-Port to connect to. Defaults to B<7634>.
3303
3304 =back
3305
3306 =head2 Plugin C<hugepages>
3307
3308 To collect B<hugepages> information, collectd reads directories
3309 "/sys/devices/system/node/*/hugepages" and
3310 "/sys/kernel/mm/hugepages".
3311 Reading of these directories can be disabled by the following
3312 options (default is enabled).
3313
3314 =over 4
3315
3316 =item B<ReportPerNodeHP> B<true>|B<false>
3317
3318 If enabled, information will be collected from the hugepage
3319 counters in "/sys/devices/system/node/*/hugepages".
3320 This is used to check the per-node hugepage statistics on
3321 a NUMA system.
3322
3323 =item B<ReportRootHP> B<true>|B<false>
3324
3325 If enabled, information will be collected from the hugepage
3326 counters in "/sys/kernel/mm/hugepages".
3327 This can be used on both NUMA and non-NUMA systems to check
3328 the overall hugepage statistics.
3329
3330 =item B<ValuesPages> B<true>|B<false>
3331
3332 Whether to report hugepages metrics in number of pages.
3333 Defaults to B<true>.
3334
3335 =item B<ValuesBytes> B<false>|B<true>
3336
3337 Whether to report hugepages metrics in bytes.
3338 Defaults to B<false>.
3339
3340 =item B<ValuesPercentage> B<false>|B<true>
3341
3342 Whether to report hugepages metrics as percentage.
3343 Defaults to B<false>.
3344
3345 =back
3346
3347 =head2 Plugin C<intel_pmu>
3348
3349 The I<intel_pmu> plugin collects performance counters data on Intel CPUs using
3350 Linux perf interface. All events are reported on a per core basis.
3351
3352 B<Synopsis:>
3353
3354   <Plugin intel_pmu>
3355     ReportHardwareCacheEvents true
3356     ReportKernelPMUEvents true
3357     ReportSoftwareEvents true
3358     EventList "/var/cache/pmu/GenuineIntel-6-2D-core.json"
3359     HardwareEvents "L2_RQSTS.CODE_RD_HIT,L2_RQSTS.CODE_RD_MISS" "L2_RQSTS.ALL_CODE_RD"
3360     Cores "0-3" "4,6" "[12-15]"
3361   </Plugin>
3362
3363 B<Options:>
3364
3365 =over 4
3366
3367 =item B<ReportHardwareCacheEvents> B<false>|B<true>
3368
3369 Enable or disable measuring of hardware CPU cache events:
3370   - L1-dcache-loads
3371   - L1-dcache-load-misses
3372   - L1-dcache-stores
3373   - L1-dcache-store-misses
3374   - L1-dcache-prefetches
3375   - L1-dcache-prefetch-misses
3376   - L1-icache-loads
3377   - L1-icache-load-misses
3378   - L1-icache-prefetches
3379   - L1-icache-prefetch-misses
3380   - LLC-loads
3381   - LLC-load-misses
3382   - LLC-stores
3383   - LLC-store-misses
3384   - LLC-prefetches
3385   - LLC-prefetch-misses
3386   - dTLB-loads
3387   - dTLB-load-misses
3388   - dTLB-stores
3389   - dTLB-store-misses
3390   - dTLB-prefetches
3391   - dTLB-prefetch-misses
3392   - iTLB-loads
3393   - iTLB-load-misses
3394   - branch-loads
3395   - branch-load-misses
3396
3397 =item B<ReportKernelPMUEvents> B<false>|B<true>
3398
3399 Enable or disable measuring of the following events:
3400   - cpu-cycles
3401   - instructions
3402   - cache-references
3403   - cache-misses
3404   - branches
3405   - branch-misses
3406   - bus-cycles
3407
3408 =item B<ReportSoftwareEvents> B<false>|B<true>
3409
3410 Enable or disable measuring of software events provided by kernel:
3411   - cpu-clock
3412   - task-clock
3413   - context-switches
3414   - cpu-migrations
3415   - page-faults
3416   - minor-faults
3417   - major-faults
3418   - alignment-faults
3419   - emulation-faults
3420
3421 =item B<EventList> I<filename>
3422
3423 JSON performance counter event list file name. To be able to monitor all Intel
3424 CPU specific events JSON event list file should be downloaded. Use the pmu-tools
3425 event_download.py script to download event list for current CPU.
3426
3427 =item B<HardwareEvents> I<events>
3428
3429 This field is a list of event names or groups of comma separated event names.
3430 This option requires B<EventList> option to be configured.
3431
3432 =item B<Cores> I<cores groups>
3433
3434 All events are reported on a per core basis. Monitoring of the events can be
3435 configured for a group of cores (aggregated statistics). This field defines
3436 groups of cores on which to monitor supported events. The field is represented
3437 as list of strings with core group values. Each string represents a list of
3438 cores in a group. If a group is enclosed in square brackets each core is added
3439 individually to a separate group (that is statistics are not aggregated).
3440 Allowed formats are:
3441     0,1,2,3
3442     0-10,20-18
3443     1,3,5-8,10,0x10-12
3444     [4-15,32-63]
3445
3446 If an empty string is provided as value for this field default cores
3447 configuration is applied - that is separate group is created for each core.
3448
3449 =back
3450
3451 =head2 Plugin C<intel_rdt>
3452
3453 The I<intel_rdt> plugin collects information provided by monitoring features of
3454 Intel Resource Director Technology (Intel(R) RDT) like Cache Monitoring
3455 Technology (CMT), Memory Bandwidth Monitoring (MBM). These features provide
3456 information about utilization of shared resources. CMT monitors last level cache
3457 occupancy (LLC). MBM supports two types of events reporting local and remote
3458 memory bandwidth. Local memory bandwidth (MBL) reports the bandwidth of
3459 accessing memory associated with the local socket. Remote memory bandwidth (MBR)
3460 reports the bandwidth of accessing the remote socket. Also this technology
3461 allows to monitor instructions per clock (IPC).
3462 Monitor events are hardware dependant. Monitoring capabilities are detected on
3463 plugin initialization and only supported events are monitored.
3464
3465 B<Note:> I<intel_rdt> plugin is using model-specific registers (MSRs), which
3466 require an additional capability to be enabled if collectd is run as a service.
3467 Please refer to I<contrib/systemd.collectd.service> file for more details.
3468
3469 B<Synopsis:>
3470
3471   <Plugin "intel_rdt">
3472     Cores "0-2" "3,4,6" "8-10,15"
3473   </Plugin>
3474
3475 B<Options:>
3476
3477 =over 4
3478
3479 =item B<Interval> I<seconds>
3480
3481 The interval within which to retrieve statistics on monitored events in seconds.
3482 For milliseconds divide the time by 1000 for example if the desired interval
3483 is 50ms, set interval to 0.05. Due to limited capacity of counters it is not
3484 recommended to set interval higher than 1 sec.
3485
3486 =item B<Cores> I<cores groups>
3487
3488 All events are reported on a per core basis. Monitoring of the events can be
3489 configured for group of cores (aggregated statistics). This field defines groups
3490 of cores on which to monitor supported events. The field is represented as list
3491 of strings with core group values. Each string represents a list of cores in a
3492 group. Allowed formats are:
3493     0,1,2,3
3494     0-10,20-18
3495     1,3,5-8,10,0x10-12
3496
3497 If an empty string is provided as value for this field default cores
3498 configuration is applied - a separate group is created for each core.
3499
3500 =back
3501
3502 B<Note:> By default global interval is used to retrieve statistics on monitored
3503 events. To configure a plugin specific interval use B<Interval> option of the
3504 intel_rdt <LoadPlugin> block. For milliseconds divide the time by 1000 for
3505 example if the desired interval is 50ms, set interval to 0.05.
3506 Due to limited capacity of counters it is not recommended to set interval higher
3507 than 1 sec.
3508
3509 =head2 Plugin C<interface>
3510
3511 =over 4
3512
3513 =item B<Interface> I<Interface>
3514
3515 Select this interface. By default these interfaces will then be collected. For
3516 a more detailed description see B<IgnoreSelected> below.
3517
3518 See F</"IGNORELISTS"> for details.
3519
3520 =item B<IgnoreSelected> I<true>|I<false>
3521
3522 If no configuration is given, the B<interface>-plugin will collect data from
3523 all interfaces. This may not be practical, especially for loopback- and
3524 similar interfaces. Thus, you can use the B<Interface>-option to pick the
3525 interfaces you're interested in. Sometimes, however, it's easier/preferred
3526 to collect all interfaces I<except> a few ones. This option enables you to
3527 do that: By setting B<IgnoreSelected> to I<true> the effect of
3528 B<Interface> is inverted: All selected interfaces are ignored and all
3529 other interfaces are collected.
3530
3531 It is possible to use regular expressions to match interface names, if the
3532 name is surrounded by I</.../> and collectd was compiled with support for
3533 regexps. This is useful if there's a need to collect (or ignore) data
3534 for a group of interfaces that are similarly named, without the need to
3535 explicitly list all of them (especially useful if the list is dynamic).
3536 Example:
3537
3538  Interface "lo"
3539  Interface "/^veth/"
3540  Interface "/^tun[0-9]+/"
3541  IgnoreSelected "true"
3542
3543 This will ignore the loopback interface, all interfaces with names starting
3544 with I<veth> and all interfaces with names starting with I<tun> followed by
3545 at least one digit.
3546
3547 =item B<ReportInactive> I<true>|I<false>
3548
3549 When set to I<false>, only interfaces with non-zero traffic will be
3550 reported. Note that the check is done by looking into whether a
3551 package was sent at any time from boot and the corresponding counter
3552 is non-zero. So, if the interface has been sending data in the past
3553 since boot, but not during the reported time-interval, it will still
3554 be reported.
3555
3556 The default value is I<true> and results in collection of the data
3557 from all interfaces that are selected by B<Interface> and
3558 B<IgnoreSelected> options.
3559
3560 =item B<UniqueName> I<true>|I<false>
3561
3562 Interface name is not unique on Solaris (KSTAT), interface name is unique
3563 only within a module/instance. Following tuple is considered unique:
3564    (ks_module, ks_instance, ks_name)
3565 If this option is set to true, interface name contains above three fields
3566 separated by an underscore. For more info on KSTAT, visit
3567 L<http://docs.oracle.com/cd/E23824_01/html/821-1468/kstat-3kstat.html#REFMAN3Ekstat-3kstat>
3568
3569 This option is only available on Solaris.
3570
3571 =back
3572
3573 =head2 Plugin C<ipmi>
3574
3575 The B<ipmi plugin> allows to monitor server platform status using the Intelligent
3576 Platform Management Interface (IPMI). Local and remote interfaces are supported.
3577
3578 The plugin configuration consists of one or more B<Instance> blocks which
3579 specify one I<ipmi> connection each. Each block requires one unique string
3580 argument as the instance name. If instances are not configured, an instance with
3581 the default option values will be created.
3582
3583 For backwards compatibility, any option other than B<Instance> block will trigger
3584 legacy config handling and it will be treated as an option within B<Instance>
3585 block. This support will go away in the next major version of Collectd.
3586
3587 Within the B<Instance> blocks, the following options are allowed:
3588
3589 =over 4
3590
3591 =item B<Address> I<Address>
3592
3593 Hostname or IP to connect to. If not specified, plugin will try to connect to
3594 local management controller (BMC).
3595
3596 =item B<Username> I<Username>
3597
3598 =item B<Password> I<Password>
3599
3600 The username and the password to use for the connection to remote BMC.
3601
3602 =item B<AuthType> I<MD5>|I<rmcp+>
3603
3604 Forces the authentication type to use for the connection to remote BMC.
3605 By default most secure type is seleted.
3606
3607 =item B<Host> I<Hostname>
3608
3609 Sets the B<host> field of dispatched values. Defaults to the global hostname
3610 setting.
3611
3612 =item B<Sensor> I<Sensor>
3613
3614 Selects sensors to collect or to ignore, depending on B<IgnoreSelected>.
3615
3616 See F</"IGNORELISTS"> for details.
3617
3618 =item B<IgnoreSelected> I<true>|I<false>
3619
3620 If no configuration if given, the B<ipmi> plugin will collect data from all
3621 sensors found of type "temperature", "voltage", "current" and "fanspeed".
3622 This option enables you to do that: By setting B<IgnoreSelected> to I<true>
3623 the effect of B<Sensor> is inverted: All selected sensors are ignored and
3624 all other sensors are collected.
3625
3626 =item B<NotifySensorAdd> I<true>|I<false>
3627
3628 If a sensor appears after initialization time of a minute a notification
3629 is sent.
3630
3631 =item B<NotifySensorRemove> I<true>|I<false>
3632
3633 If a sensor disappears a notification is sent.
3634
3635 =item B<NotifySensorNotPresent> I<true>|I<false>
3636
3637 If you have for example dual power supply and one of them is (un)plugged then
3638 a notification is sent.
3639
3640 =item B<NotifyIPMIConnectionState> I<true>|I<false>
3641
3642 If a IPMI connection state changes after initialization time of a minute
3643 a notification is sent. Defaults to B<false>.
3644
3645 =item B<SELEnabled> I<true>|I<false>
3646
3647 If system event log (SEL) is enabled, plugin will listen for sensor threshold
3648 and discrete events. When event is received the notification is sent.
3649 SEL event filtering can be configured using B<SELSensor> and B<SELIgnoreSelected>
3650 config options.
3651 Defaults to B<false>.
3652
3653 =item B<SELSensor> I<SELSensor>
3654
3655 Selects sensors to get events from or to ignore, depending on B<SELIgnoreSelected>.
3656
3657 See F</"IGNORELISTS"> for details.
3658
3659 =item B<SELIgnoreSelected> I<true>|I<false>
3660
3661 If no configuration is given, the B<ipmi> plugin will pass events from all
3662 sensors. This option enables you to do that: By setting B<SELIgnoreSelected>
3663 to I<true> the effect of B<SELSensor> is inverted: All events from selected
3664 sensors are ignored and all events from other sensors are passed.
3665
3666 =item B<SELClearEvent> I<true>|I<false>
3667
3668 If SEL clear event is enabled, plugin will delete event from SEL list after
3669 it is received and successfully handled. In this case other tools that are
3670 subscribed for SEL events will receive an empty event.
3671 Defaults to B<false>.
3672
3673 =back
3674
3675 =head2 Plugin C<iptables>
3676
3677 =over 4
3678
3679 =item B<Chain> I<Table> I<Chain> [I<Comment|Number> [I<Name>]]
3680
3681 =item B<Chain6> I<Table> I<Chain> [I<Comment|Number> [I<Name>]]
3682
3683 Select the iptables/ip6tables filter rules to count packets and bytes from.
3684
3685 If only I<Table> and I<Chain> are given, this plugin will collect the counters
3686 of all rules which have a comment-match. The comment is then used as
3687 type-instance.
3688
3689 If I<Comment> or I<Number> is given, only the rule with the matching comment or
3690 the I<n>th rule will be collected. Again, the comment (or the number) will be
3691 used as the type-instance.
3692
3693 If I<Name> is supplied, it will be used as the type-instance instead of the
3694 comment or the number.
3695
3696 =back
3697
3698 =head2 Plugin C<irq>
3699
3700 =over 4
3701
3702 =item B<Irq> I<Irq>
3703
3704 Select this irq. By default these irqs will then be collected. For a more
3705 detailed description see B<IgnoreSelected> below.
3706
3707 See F</"IGNORELISTS"> for details.
3708
3709 =item B<IgnoreSelected> I<true>|I<false>
3710
3711 If no configuration if given, the B<irq>-plugin will collect data from all
3712 irqs. This may not be practical, especially if no interrupts happen. Thus, you
3713 can use the B<Irq>-option to pick the interrupt you're interested in.
3714 Sometimes, however, it's easier/preferred to collect all interrupts I<except> a
3715 few ones. This option enables you to do that: By setting B<IgnoreSelected> to
3716 I<true> the effect of B<Irq> is inverted: All selected interrupts are ignored
3717 and all other interrupts are collected.
3718
3719 =back
3720
3721 =head2 Plugin C<java>
3722
3723 The I<Java> plugin makes it possible to write extensions for collectd in Java.
3724 This section only discusses the syntax and semantic of the configuration
3725 options. For more in-depth information on the I<Java> plugin, please read
3726 L<collectd-java(5)>.
3727
3728 Synopsis:
3729
3730  <Plugin "java">
3731    JVMArg "-verbose:jni"
3732    JVMArg "-Djava.class.path=/opt/collectd/lib/collectd/bindings/java"
3733    LoadPlugin "org.collectd.java.Foobar"
3734    <Plugin "org.collectd.java.Foobar">
3735      # To be parsed by the plugin
3736    </Plugin>
3737  </Plugin>
3738
3739 Available configuration options:
3740
3741 =over 4
3742
3743 =item B<JVMArg> I<Argument>
3744
3745 Argument that is to be passed to the I<Java Virtual Machine> (JVM). This works
3746 exactly the way the arguments to the I<java> binary on the command line work.
3747 Execute C<javaE<nbsp>--help> for details.
3748
3749 Please note that B<all> these options must appear B<before> (i.E<nbsp>e. above)
3750 any other options! When another option is found, the JVM will be started and
3751 later options will have to be ignored!
3752
3753 =item B<LoadPlugin> I<JavaClass>
3754
3755 Instantiates a new I<JavaClass> object. The constructor of this object very
3756 likely then registers one or more callback methods with the server.
3757
3758 See L<collectd-java(5)> for details.
3759
3760 When the first such option is found, the virtual machine (JVM) is created. This
3761 means that all B<JVMArg> options must appear before (i.E<nbsp>e. above) all
3762 B<LoadPlugin> options!
3763
3764 =item B<Plugin> I<Name>
3765
3766 The entire block is passed to the Java plugin as an
3767 I<org.collectd.api.OConfigItem> object.
3768
3769 For this to work, the plugin has to register a configuration callback first,
3770 see L<collectd-java(5)/"config callback">. This means, that the B<Plugin> block
3771 must appear after the appropriate B<LoadPlugin> block. Also note, that I<Name>
3772 depends on the (Java) plugin registering the callback and is completely
3773 independent from the I<JavaClass> argument passed to B<LoadPlugin>.
3774
3775 =back
3776
3777 =head2 Plugin C<load>
3778
3779 The I<Load plugin> collects the system load. These numbers give a rough overview
3780 over the utilization of a machine. The system load is defined as the number of
3781 runnable tasks in the run-queue and is provided by many operating systems as a
3782 one, five or fifteen minute average.
3783
3784 The following configuration options are available:
3785
3786 =over 4
3787
3788 =item B<ReportRelative> B<false>|B<true>
3789
3790 When enabled, system load divided by number of available CPU cores is reported
3791 for intervals 1 min, 5 min and 15 min. Defaults to false.
3792
3793 =back
3794
3795
3796 =head2 Plugin C<logfile>
3797
3798 =over 4
3799
3800 =item B<LogLevel> B<debug|info|notice|warning|err>
3801
3802 Sets the log-level. If, for example, set to B<notice>, then all events with
3803 severity B<notice>, B<warning>, or B<err> will be written to the logfile.
3804
3805 Please note that B<debug> is only available if collectd has been compiled with
3806 debugging support.
3807
3808 =item B<File> I<File>
3809
3810 Sets the file to write log messages to. The special strings B<stdout> and
3811 B<stderr> can be used to write to the standard output and standard error
3812 channels, respectively. This, of course, only makes much sense when I<collectd>
3813 is running in foreground- or non-daemon-mode.
3814
3815 =item B<Timestamp> B<true>|B<false>
3816
3817 Prefix all lines printed by the current time. Defaults to B<true>.
3818
3819 =item B<PrintSeverity> B<true>|B<false>
3820
3821 When enabled, all lines are prefixed by the severity of the log message, for
3822 example "warning". Defaults to B<false>.
3823
3824 =back
3825
3826 B<Note>: There is no need to notify the daemon after moving or removing the
3827 log file (e.E<nbsp>g. when rotating the logs). The plugin reopens the file
3828 for each line it writes.
3829
3830 =head2 Plugin C<log_logstash>
3831
3832 The I<log logstash plugin> behaves like the logfile plugin but formats
3833 messages as JSON events for logstash to parse and input.
3834
3835 =over 4
3836
3837 =item B<LogLevel> B<debug|info|notice|warning|err>
3838
3839 Sets the log-level. If, for example, set to B<notice>, then all events with
3840 severity B<notice>, B<warning>, or B<err> will be written to the logfile.
3841
3842 Please note that B<debug> is only available if collectd has been compiled with
3843 debugging support.
3844
3845 =item B<File> I<File>
3846
3847 Sets the file to write log messages to. The special strings B<stdout> and
3848 B<stderr> can be used to write to the standard output and standard error
3849 channels, respectively. This, of course, only makes much sense when I<collectd>
3850 is running in foreground- or non-daemon-mode.
3851
3852 =back
3853
3854 B<Note>: There is no need to notify the daemon after moving or removing the
3855 log file (e.E<nbsp>g. when rotating the logs). The plugin reopens the file
3856 for each line it writes.
3857
3858 =head2 Plugin C<lpar>
3859
3860 The I<LPAR plugin> reads CPU statistics of I<Logical Partitions>, a
3861 virtualization technique for IBM POWER processors. It takes into account CPU
3862 time stolen from or donated to a partition, in addition to the usual user,
3863 system, I/O statistics.
3864
3865 The following configuration options are available:
3866
3867 =over 4
3868
3869 =item B<CpuPoolStats> B<false>|B<true>
3870
3871 When enabled, statistics about the processor pool are read, too. The partition
3872 needs to have pool authority in order to be able to acquire this information.
3873 Defaults to false.
3874
3875 =item B<ReportBySerial> B<false>|B<true>
3876
3877 If enabled, the serial of the physical machine the partition is currently
3878 running on is reported as I<hostname> and the logical hostname of the machine
3879 is reported in the I<plugin instance>. Otherwise, the logical hostname will be
3880 used (just like other plugins) and the I<plugin instance> will be empty.
3881 Defaults to false.
3882
3883 =back
3884
3885 =head2 Plugin C<lua>
3886
3887 This plugin embeds a Lua interpreter into collectd and provides an interface
3888 to collectd's plugin system. See L<collectd-lua(5)> for its documentation.
3889
3890
3891 =head2 Plugin C<mbmon>
3892
3893 The C<mbmon plugin> uses mbmon to retrieve temperature, voltage, etc.
3894
3895 Be default collectd connects to B<localhost> (127.0.0.1), port B<411/tcp>. The
3896 B<Host> and B<Port> options can be used to change these values, see below.
3897 C<mbmon> has to be running to work correctly. If C<mbmon> is not running
3898 timeouts may appear which may interfere with other statistics..
3899
3900 C<mbmon> must be run with the -r option ("print TAG and Value format");
3901 Debian's F</etc/init.d/mbmon> script already does this, other people
3902 will need to ensure that this is the case.
3903
3904 =over 4
3905
3906 =item B<Host> I<Hostname>
3907
3908 Hostname to connect to. Defaults to B<127.0.0.1>.
3909
3910 =item B<Port> I<Port>
3911
3912 TCP-Port to connect to. Defaults to B<411>.
3913
3914 =back
3915
3916 =head2 Plugin C<mcelog>
3917
3918 The C<mcelog plugin> uses mcelog to retrieve machine check exceptions.
3919
3920 By default the plugin connects to B<"/var/run/mcelog-client"> to check if the
3921 mcelog server is running. When the server is running, the plugin will tail the
3922 specified logfile to retrieve machine check exception information and send a
3923 notification with the details from the logfile. The plugin will use the mcelog
3924 client protocol to retrieve memory related machine check exceptions. Note that
3925 for memory exceptions, notifications are only sent when there is a change in
3926 the number of corrected/uncorrected memory errors.
3927
3928 =head3 The Memory block
3929
3930 Note: these options cannot be used in conjunction with the logfile options, they are mutually
3931 exclusive.
3932
3933 =over 3
3934
3935 =item B<McelogClientSocket> I<Path>
3936 Connect to the mcelog client socket using the UNIX domain socket at I<Path>.
3937 Defaults to B<"/var/run/mcelog-client">.
3938
3939 =item B<PersistentNotification> B<true>|B<false>
3940 Override default configuration to only send notifications when sent when there
3941 is a change in the number of corrected/uncorrected memory errors. When set to
3942 true notifications will be sent for every read cycle. Default is false. Does
3943 not affect the stats being dispatched.
3944
3945 =back
3946
3947 =over 4
3948
3949 =item B<McelogLogfile> I<Path>
3950
3951 The mcelog file to parse. Defaults to B<"/var/log/mcelog">. Note: this option
3952 cannot be used in conjunction with the memory block options, they are mutually
3953 exclusive.
3954
3955 =back
3956
3957 =head2 Plugin C<md>
3958
3959 The C<md plugin> collects information from Linux Software-RAID devices (md).
3960
3961 All reported values are of the type C<md_disks>. Reported type instances are
3962 I<active>, I<failed> (present but not operational), I<spare> (hot stand-by) and
3963 I<missing> (physically absent) disks.
3964
3965 =over 4
3966
3967 =item B<Device> I<Device>
3968
3969 Select md devices based on device name. The I<device name> is the basename of
3970 the device, i.e. the name of the block device without the leading C</dev/>.
3971 See B<IgnoreSelected> for more details.
3972
3973 See F</"IGNORELISTS"> for details.
3974
3975 =item B<IgnoreSelected> B<true>|B<false>
3976
3977 Invert device selection: If set to B<true>, all md devices B<except> those
3978 listed using B<Device> are collected. If B<false> (the default), only those
3979 listed are collected. If no configuration is given, the B<md> plugin will
3980 collect data from all md devices.
3981
3982 =back
3983
3984 =head2 Plugin C<memcachec>
3985
3986 The C<memcachec plugin> connects to a memcached server, queries one or more
3987 given I<pages> and parses the returned data according to user specification.
3988 The I<matches> used are the same as the matches used in the C<curl> and C<tail>
3989 plugins.
3990
3991 In order to talk to the memcached server, this plugin uses the I<libmemcached>
3992 library. Please note that there is another library with a very similar name,
3993 libmemcache (notice the missing `d'), which is not applicable.
3994
3995 Synopsis of the configuration:
3996
3997  <Plugin "memcachec">
3998    <Page "plugin_instance">
3999      Server "localhost"
4000      Key "page_key"
4001      Plugin "plugin_name"
4002      <Match>
4003        Regex "(\\d+) bytes sent"
4004        DSType CounterAdd
4005        Type "ipt_octets"
4006        Instance "type_instance"
4007      </Match>
4008    </Page>
4009  </Plugin>
4010
4011 The configuration options are:
4012
4013 =over 4
4014
4015 =item E<lt>B<Page> I<Name>E<gt>
4016
4017 Each B<Page> block defines one I<page> to be queried from the memcached server.
4018 The block requires one string argument which is used as I<plugin instance>.
4019
4020 =item B<Server> I<Address>
4021
4022 Sets the server address to connect to when querying the page. Must be inside a
4023 B<Page> block.
4024
4025 =item B<Key> I<Key>
4026
4027 When connected to the memcached server, asks for the page I<Key>.
4028
4029 =item B<Plugin> I<Plugin>
4030
4031 Use I<Plugin> as the plugin name when submitting values.
4032 Defaults to C<memcachec>.
4033
4034 =item E<lt>B<Match>E<gt>
4035
4036 Match blocks define which strings to look for and how matches substrings are
4037 interpreted. For a description of match blocks, please see L<"Plugin tail">.
4038
4039 =back
4040
4041 =head2 Plugin C<memcached>
4042
4043 The B<memcached plugin> connects to a memcached server and queries statistics
4044 about cache utilization, memory and bandwidth used.
4045 L<http://memcached.org/>
4046
4047  <Plugin "memcached">
4048    <Instance "name">
4049      #Host "memcache.example.com"
4050      Address "127.0.0.1"
4051      Port 11211
4052    </Instance>
4053  </Plugin>
4054
4055 The plugin configuration consists of one or more B<Instance> blocks which
4056 specify one I<memcached> connection each. Within the B<Instance> blocks, the
4057 following options are allowed:
4058
4059 =over 4
4060
4061 =item B<Host> I<Hostname>
4062
4063 Sets the B<host> field of dispatched values. Defaults to the global hostname
4064 setting.
4065 For backwards compatibility, values are also dispatched with the global
4066 hostname when B<Host> is set to B<127.0.0.1> or B<localhost> and B<Address> is
4067 not set.
4068
4069 =item B<Address> I<Address>
4070
4071 Hostname or IP to connect to. For backwards compatibility, defaults to the
4072 value of B<Host> or B<127.0.0.1> if B<Host> is unset.
4073
4074 =item B<Port> I<Port>
4075
4076 TCP port to connect to. Defaults to B<11211>.
4077
4078 =item B<Socket> I<Path>
4079
4080 Connect to I<memcached> using the UNIX domain socket at I<Path>. If this
4081 setting is given, the B<Address> and B<Port> settings are ignored.
4082
4083 =back
4084
4085 =head2 Plugin C<mic>
4086
4087 The B<mic plugin> gathers CPU statistics, memory usage and temperatures from
4088 Intel's Many Integrated Core (MIC) systems.
4089
4090 B<Synopsis:>
4091
4092  <Plugin mic>
4093    ShowCPU true
4094    ShowCPUCores true
4095    ShowMemory true
4096
4097    ShowTemperatures true
4098    Temperature vddg
4099    Temperature vddq
4100    IgnoreSelectedTemperature true
4101
4102    ShowPower true
4103    Power total0
4104    Power total1
4105    IgnoreSelectedPower true
4106  </Plugin>
4107
4108 The following options are valid inside the B<PluginE<nbsp>mic> block:
4109
4110 =over 4
4111
4112 =item B<ShowCPU> B<true>|B<false>
4113
4114 If enabled (the default) a sum of the CPU usage across all cores is reported.
4115
4116 =item B<ShowCPUCores> B<true>|B<false>
4117
4118 If enabled (the default) per-core CPU usage is reported.
4119
4120 =item B<ShowMemory> B<true>|B<false>
4121
4122 If enabled (the default) the physical memory usage of the MIC system is
4123 reported.
4124
4125 =item B<ShowTemperatures> B<true>|B<false>
4126
4127 If enabled (the default) various temperatures of the MIC system are reported.
4128
4129 =item B<Temperature> I<Name>
4130
4131 This option controls which temperatures are being reported. Whether matching
4132 temperatures are being ignored or I<only> matching temperatures are reported
4133 depends on the B<IgnoreSelectedTemperature> setting below. By default I<all>
4134 temperatures are reported.
4135
4136 =item B<IgnoreSelectedTemperature> B<false>|B<true>
4137
4138 Controls the behavior of the B<Temperature> setting above. If set to B<false>
4139 (the default) only temperatures matching a B<Temperature> option are reported
4140 or, if no B<Temperature> option is specified, all temperatures are reported. If
4141 set to B<true>, matching temperatures are I<ignored> and all other temperatures
4142 are reported.
4143
4144 Known temperature names are:
4145
4146 =over 4
4147
4148 =item die
4149
4150 Die of the CPU
4151
4152 =item devmem
4153
4154 Device Memory
4155
4156 =item fin
4157
4158 Fan In
4159
4160 =item fout
4161
4162 Fan Out
4163
4164 =item vccp
4165
4166 Voltage ccp
4167
4168 =item vddg
4169
4170 Voltage ddg
4171
4172 =item vddq
4173
4174 Voltage ddq
4175
4176 =back
4177
4178 =item B<ShowPower> B<true>|B<false>
4179
4180 If enabled (the default) various temperatures of the MIC system are reported.
4181
4182 =item B<Power> I<Name>
4183
4184 This option controls which power readings are being reported. Whether matching
4185 power readings are being ignored or I<only> matching power readings are reported
4186 depends on the B<IgnoreSelectedPower> setting below. By default I<all>
4187 power readings are reported.
4188
4189 =item B<IgnoreSelectedPower> B<false>|B<true>
4190
4191 Controls the behavior of the B<Power> setting above. If set to B<false>
4192 (the default) only power readings matching a B<Power> option are reported
4193 or, if no B<Power> option is specified, all power readings are reported. If
4194 set to B<true>, matching power readings are I<ignored> and all other power readings
4195 are reported.
4196
4197 Known power names are:
4198
4199 =over 4
4200
4201 =item total0
4202
4203 Total power utilization averaged over Time Window 0 (uWatts).
4204
4205 =item total1
4206
4207 Total power utilization averaged over Time Window 0 (uWatts).
4208
4209 =item inst
4210
4211 Instantaneous power (uWatts).
4212
4213 =item imax
4214
4215 Max instantaneous power (uWatts).
4216
4217 =item pcie
4218
4219 PCI-E connector power (uWatts).
4220
4221 =item c2x3
4222
4223 2x3 connector power (uWatts).
4224
4225 =item c2x4
4226
4227 2x4 connector power (uWatts).
4228
4229 =item vccp
4230
4231 Core rail (uVolts).
4232
4233 =item vddg
4234
4235 Uncore rail (uVolts).
4236
4237 =item vddq
4238
4239 Memory subsystem rail (uVolts).
4240
4241 =back
4242
4243 =back
4244
4245 =head2 Plugin C<memory>
4246
4247 The I<memory plugin> provides the following configuration options:
4248
4249 =over 4
4250
4251 =item B<ValuesAbsolute> B<true>|B<false>
4252
4253 Enables or disables reporting of physical memory usage in absolute numbers,
4254 i.e. bytes. Defaults to B<true>.
4255
4256 =item B<ValuesPercentage> B<false>|B<true>
4257
4258 Enables or disables reporting of physical memory usage in percentages, e.g.
4259 percent of physical memory used. Defaults to B<false>.
4260
4261 This is useful for deploying I<collectd> in a heterogeneous environment in
4262 which the sizes of physical memory vary.
4263
4264 =back
4265
4266 =head2 Plugin C<modbus>
4267
4268 The B<modbus plugin> connects to a Modbus "slave" via Modbus/TCP or Modbus/RTU and
4269 reads register values. It supports reading single registers (unsigned 16E<nbsp>bit
4270 values), large integer values (unsigned 32E<nbsp>bit and 64E<nbsp>bit values) and
4271 floating point values (two registers interpreted as IEEE floats in big endian
4272 notation).
4273
4274 B<Synopsis:>
4275
4276  <Data "voltage-input-1">
4277    RegisterBase 0
4278    RegisterType float
4279    RegisterCmd ReadHolding
4280    Type voltage
4281    Instance "input-1"
4282    #Scale 1.0
4283    #Shift 0.0
4284  </Data>
4285
4286  <Data "voltage-input-2">
4287    RegisterBase 2
4288    RegisterType float
4289    RegisterCmd ReadHolding
4290    Type voltage
4291    Instance "input-2"
4292  </Data>
4293
4294  <Data "supply-temperature-1">
4295    RegisterBase 0
4296    RegisterType Int16
4297    RegisterCmd ReadHolding
4298    Type temperature
4299    Instance "temp-1"
4300  </Data>
4301
4302  <Host "modbus.example.com">
4303    Address "192.168.0.42"
4304    Port    "502"
4305    Interval 60
4306
4307    <Slave 1>
4308      Instance "power-supply"
4309      Collect  "voltage-input-1"
4310      Collect  "voltage-input-2"
4311    </Slave>
4312  </Host>
4313
4314  <Host "localhost">
4315    Device "/dev/ttyUSB0"
4316    Baudrate 38400
4317    Interval 20
4318
4319    <Slave 1>
4320      Instance "temperature"
4321      Collect  "supply-temperature-1"
4322    </Slave>
4323  </Host>
4324
4325 =over 4
4326
4327 =item E<lt>B<Data> I<Name>E<gt> blocks
4328
4329 Data blocks define a mapping between register numbers and the "types" used by
4330 I<collectd>.
4331
4332 Within E<lt>DataE<nbsp>/E<gt> blocks, the following options are allowed:
4333
4334 =over 4
4335
4336 =item B<RegisterBase> I<Number>
4337
4338 Configures the base register to read from the device. If the option
4339 B<RegisterType> has been set to B<Uint32> or B<Float>, this and the next
4340 register will be read (the register number is increased by one).
4341
4342 =item B<RegisterType> B<Int16>|B<Int32>|B<Int64>|B<Uint16>|B<Uint32>|B<UInt64>|B<Float>|B<Int32LE>|B<Uint32LE>|B<FloatLE>
4343
4344 Specifies what kind of data is returned by the device. This defaults to
4345 B<Uint16>.  If the type is B<Int32>, B<Int32LE>, B<Uint32>, B<Uint32LE>,
4346 B<Float> or B<FloatLE>, two 16E<nbsp>bit registers at B<RegisterBase>
4347 and B<RegisterBase+1> will be read and the data is combined into one
4348 32E<nbsp>value. For B<Int32>, B<Uint32> and B<Float> the most significant
4349 16E<nbsp>bits are in the register at B<RegisterBase> and the least
4350 significant 16E<nbsp>bits are in the register at B<RegisterBase+1>.
4351 For B<Int32LE>, B<Uint32LE>, or B<Float32LE>, the high and low order
4352 registers are swapped with the most significant 16E<nbsp>bits in
4353 the B<RegisterBase+1> and the least significant 16E<nbsp>bits in
4354 B<RegisterBase>. If the type is B<Int64> or B<UInt64>, four 16E<nbsp>bit
4355 registers at B<RegisterBase>, B<RegisterBase+1>, B<RegisterBase+2> and
4356 B<RegisterBase+3> will be read and the data combined into one
4357 64E<nbsp>value.
4358
4359 =item B<RegisterCmd> B<ReadHolding>|B<ReadInput>
4360
4361 Specifies register type to be collected from device. Works only with libmodbus
4362 2.9.2 or higher. Defaults to B<ReadHolding>.
4363
4364 =item B<Type> I<Type>
4365
4366 Specifies the "type" (data set) to use when dispatching the value to
4367 I<collectd>. Currently, only data sets with exactly one data source are
4368 supported.
4369
4370 =item B<Instance> I<Instance>
4371
4372 Sets the type instance to use when dispatching the value to I<Instance>. If
4373 unset, an empty string (no type instance) is used.
4374
4375 =item B<Scale> I<Value>
4376
4377 The values taken from device are multiplied by I<Value>. The field is optional
4378 and the default is B<1.0>.
4379
4380 =item B<Shift> I<Value>
4381
4382 I<Value> is added to values from device after they have been multiplied by
4383 B<Scale> value. The field is optional and the default value is B<0.0>.
4384
4385 =back
4386
4387 =item E<lt>B<Host> I<Name>E<gt> blocks
4388
4389 Host blocks are used to specify to which hosts to connect and what data to read
4390 from their "slaves". The string argument I<Name> is used as hostname when
4391 dispatching the values to I<collectd>.
4392
4393 Within E<lt>HostE<nbsp>/E<gt> blocks, the following options are allowed:
4394
4395 =over 4
4396
4397 =item B<Address> I<Hostname>
4398
4399 For Modbus/TCP, specifies the node name (the actual network address) used to
4400 connect to the host. This may be an IP address or a hostname. Please note that
4401 the used I<libmodbus> library only supports IPv4 at the moment.
4402
4403 =item B<Port> I<Service>
4404
4405 for Modbus/TCP, specifies the port used to connect to the host. The port can
4406 either be given as a number or as a service name. Please note that the
4407 I<Service> argument must be a string, even if ports are given in their numerical
4408 form. Defaults to "502".
4409
4410 =item B<Device> I<Devicenode>
4411
4412 For Modbus/RTU, specifies the path to the serial device being used.
4413
4414 =item B<Baudrate> I<Baudrate>
4415
4416 For Modbus/RTU, specifies the baud rate of the serial device.
4417 Note, connections currently support only 8/N/1.
4418
4419 =item B<Interval> I<Interval>
4420
4421 Sets the interval (in seconds) in which the values will be collected from this
4422 host. By default the global B<Interval> setting will be used.
4423
4424 =item E<lt>B<Slave> I<ID>E<gt>
4425
4426 Over each connection, multiple Modbus devices may be reached. The slave ID
4427 is used to specify which device should be addressed. For each device you want
4428 to query, one B<Slave> block must be given.
4429
4430 Within E<lt>SlaveE<nbsp>/E<gt> blocks, the following options are allowed:
4431
4432 =over 4
4433
4434 =item B<Instance> I<Instance>
4435
4436 Specify the plugin instance to use when dispatching the values to I<collectd>.
4437 By default "slave_I<ID>" is used.
4438
4439 =item B<Collect> I<DataName>
4440
4441 Specifies which data to retrieve from the device. I<DataName> must be the same
4442 string as the I<Name> argument passed to a B<Data> block. You can specify this
4443 option multiple times to collect more than one value from a slave. At least one
4444 B<Collect> option is mandatory.
4445
4446 =back
4447
4448 =back
4449
4450 =back
4451
4452 =head2 Plugin C<mqtt>
4453
4454 The I<MQTT plugin> can send metrics to MQTT (B<Publish> blocks) and receive
4455 values from MQTT (B<Subscribe> blocks).
4456
4457 B<Synopsis:>
4458
4459  <Plugin mqtt>
4460    <Publish "name">
4461      Host "mqtt.example.com"
4462      Prefix "collectd"
4463    </Publish>
4464    <Subscribe "name">
4465      Host "mqtt.example.com"
4466      Topic "collectd/#"
4467    </Subscribe>
4468  </Plugin>
4469
4470 The plugin's configuration is in B<Publish> and/or B<Subscribe> blocks,
4471 configuring the sending and receiving direction respectively. The plugin will
4472 register a write callback named C<mqtt/I<name>> where I<name> is the string
4473 argument given to the B<Publish> block. Both types of blocks share many but not
4474 all of the following options. If an option is valid in only one of the blocks,
4475 it will be mentioned explicitly.
4476
4477 B<Options:>
4478
4479 =over 4
4480
4481 =item B<Host> I<Hostname>
4482
4483 Hostname of the MQTT broker to connect to.
4484
4485 =item B<Port> I<Service>
4486
4487 Port number or service name of the MQTT broker to connect to.
4488
4489 =item B<User> I<UserName>
4490
4491 Username used when authenticating to the MQTT broker.
4492
4493 =item B<Password> I<Password>
4494
4495 Password used when authenticating to the MQTT broker.
4496
4497 =item B<ClientId> I<ClientId>
4498
4499 MQTT client ID to use. Defaults to the hostname used by I<collectd>.
4500
4501 =item B<QoS> [B<0>-B<2>]
4502
4503 Sets the I<Quality of Service>, with the values C<0>, C<1> and C<2> meaning:
4504
4505 =over 4
4506
4507 =item B<0>
4508
4509 At most once
4510
4511 =item B<1>
4512
4513 At least once
4514
4515 =item B<2>
4516
4517 Exactly once
4518
4519 =back
4520
4521 In B<Publish> blocks, this option determines the QoS flag set on outgoing
4522 messages and defaults to B<0>. In B<Subscribe> blocks, determines the maximum
4523 QoS setting the client is going to accept and defaults to B<2>. If the QoS flag
4524 on a message is larger than the maximum accepted QoS of a subscriber, the
4525 message's QoS will be downgraded.
4526
4527 =item B<Prefix> I<Prefix> (Publish only)
4528
4529 This plugin will use one topic per I<value list> which will looks like a path.
4530 I<Prefix> is used as the first path element and defaults to B<collectd>.
4531
4532 An example topic name would be:
4533
4534  collectd/cpu-0/cpu-user
4535
4536 =item B<Retain> B<false>|B<true> (Publish only)
4537
4538 Controls whether the MQTT broker will retain (keep a copy of) the last message
4539 sent to each topic and deliver it to new subscribers. Defaults to B<false>.
4540
4541 =item B<StoreRates> B<true>|B<false> (Publish only)
4542
4543 Controls whether C<DERIVE> and C<COUNTER> metrics are converted to a I<rate>
4544 before sending. Defaults to B<true>.
4545
4546 =item B<CleanSession> B<true>|B<false> (Subscribe only)
4547
4548 Controls whether the MQTT "cleans" the session up after the subscriber
4549 disconnects or if it maintains the subscriber's subscriptions and all messages
4550 that arrive while the subscriber is disconnected. Defaults to B<true>.
4551
4552 =item B<Topic> I<TopicName> (Subscribe only)
4553
4554 Configures the topic(s) to subscribe to. You can use the single level C<+> and
4555 multi level C<#> wildcards. Defaults to B<collectd/#>, i.e. all topics beneath
4556 the B<collectd> branch.
4557
4558 =item B<CACert> I<file>
4559
4560 Path to the PEM-encoded CA certificate file. Setting this option enables TLS
4561 communication with the MQTT broker, and as such, B<Port> should be the TLS-enabled
4562 port of the MQTT broker.
4563 This option enables the use of TLS.
4564
4565 =item B<CertificateFile> I<file>
4566
4567 Path to the PEM-encoded certificate file to use as client certificate when
4568 connecting to the MQTT broker.
4569 Only valid if B<CACert> and B<CertificateKeyFile> are also set.
4570
4571 =item B<CertificateKeyFile> I<file>
4572
4573 Path to the unencrypted PEM-encoded key file corresponding to B<CertificateFile>.
4574 Only valid if B<CACert> and B<CertificateFile> are also set.
4575
4576 =item B<TLSProtocol> I<protocol>
4577
4578 If configured, this specifies the string protocol version (e.g. C<tlsv1>,
4579 C<tlsv1.2>) to use for the TLS connection to the broker. If not set a default
4580 version is used which depends on the version of OpenSSL the Mosquitto library
4581 was linked against.
4582 Only valid if B<CACert> is set.
4583
4584 =item B<CipherSuite> I<ciphersuite>
4585
4586 A string describing the ciphers available for use. See L<ciphers(1)> and the
4587 C<openssl ciphers> utility for more information. If unset, the default ciphers
4588 will be used.
4589 Only valid if B<CACert> is set.
4590
4591 =back
4592
4593 =head2 Plugin C<mysql>
4594
4595 The C<mysql plugin> requires B<mysqlclient> to be installed. It connects to
4596 one or more databases when started and keeps the connection up as long as
4597 possible. When the connection is interrupted for whatever reason it will try
4598 to re-connect. The plugin will complain loudly in case anything goes wrong.
4599
4600 This plugin issues the MySQL C<SHOW STATUS> / C<SHOW GLOBAL STATUS> command
4601 and collects information about MySQL network traffic, executed statements,
4602 requests, the query cache and threads by evaluating the
4603 C<Bytes_{received,sent}>, C<Com_*>, C<Handler_*>, C<Qcache_*> and C<Threads_*>
4604 return values. Please refer to the B<MySQL reference manual>, I<5.1.6. Server
4605 Status Variables> for an explanation of these values.
4606
4607 Optionally, master and slave statistics may be collected in a MySQL
4608 replication setup. In that case, information about the synchronization state
4609 of the nodes are collected by evaluating the C<Position> return value of the
4610 C<SHOW MASTER STATUS> command and the C<Seconds_Behind_Master>,
4611 C<Read_Master_Log_Pos> and C<Exec_Master_Log_Pos> return values of the
4612 C<SHOW SLAVE STATUS> command. See the B<MySQL reference manual>,
4613 I<12.5.5.21 SHOW MASTER STATUS Syntax> and
4614 I<12.5.5.31 SHOW SLAVE STATUS Syntax> for details.
4615
4616 Synopsis:
4617
4618   <Plugin mysql>
4619     <Database foo>
4620       Host "hostname"
4621       User "username"
4622       Password "password"
4623       Port "3306"
4624       MasterStats true
4625       ConnectTimeout 10
4626       SSLKey "/path/to/key.pem"
4627       SSLCert "/path/to/cert.pem"
4628       SSLCA "/path/to/ca.pem"
4629       SSLCAPath "/path/to/cas/"
4630       SSLCipher "DHE-RSA-AES256-SHA"
4631     </Database>
4632
4633     <Database bar>
4634       Alias "squeeze"
4635       Host "localhost"
4636       Socket "/var/run/mysql/mysqld.sock"
4637       SlaveStats true
4638       SlaveNotifications true
4639     </Database>
4640
4641    <Database galera>
4642       Alias "galera"
4643       Host "localhost"
4644       Socket "/var/run/mysql/mysqld.sock"
4645       WsrepStats true
4646    </Database>
4647   </Plugin>
4648
4649 A B<Database> block defines one connection to a MySQL database. It accepts a
4650 single argument which specifies the name of the database. None of the other
4651 options are required. MySQL will use default values as documented in the
4652 "mysql_real_connect()" and "mysql_ssl_set()" sections in the
4653 B<MySQL reference manual>.
4654
4655 =over 4
4656
4657 =item B<Alias> I<Alias>
4658
4659 Alias to use as sender instead of hostname when reporting. This may be useful
4660 when having cryptic hostnames.
4661
4662 =item B<Host> I<Hostname>
4663
4664 Hostname of the database server. Defaults to B<localhost>.
4665
4666 =item B<User> I<Username>
4667
4668 Username to use when connecting to the database. The user does not have to be
4669 granted any privileges (which is synonym to granting the C<USAGE> privilege),
4670 unless you want to collectd replication statistics (see B<MasterStats> and
4671 B<SlaveStats> below). In this case, the user needs the C<REPLICATION CLIENT>
4672 (or C<SUPER>) privileges. Else, any existing MySQL user will do.
4673
4674 =item B<Password> I<Password>
4675
4676 Password needed to log into the database.
4677
4678 =item B<Database> I<Database>
4679
4680 Select this database. Defaults to I<no database> which is a perfectly reasonable
4681 option for what this plugin does.
4682
4683 =item B<Port> I<Port>
4684
4685 TCP-port to connect to. The port must be specified in its numeric form, but it
4686 must be passed as a string nonetheless. For example:
4687
4688   Port "3306"
4689
4690 If B<Host> is set to B<localhost> (the default), this setting has no effect.
4691 See the documentation for the C<mysql_real_connect> function for details.
4692
4693 =item B<Socket> I<Socket>
4694
4695 Specifies the path to the UNIX domain socket of the MySQL server. This option
4696 only has any effect, if B<Host> is set to B<localhost> (the default).
4697 Otherwise, use the B<Port> option above. See the documentation for the
4698 C<mysql_real_connect> function for details.
4699
4700 =item B<InnodbStats> I<true|false>
4701
4702 If enabled, metrics about the InnoDB storage engine are collected.
4703 Disabled by default.
4704
4705 =item B<MasterStats> I<true|false>
4706
4707 =item B<SlaveStats> I<true|false>
4708
4709 Enable the collection of master / slave statistics in a replication setup. In
4710 order to be able to get access to these statistics, the user needs special
4711 privileges. See the B<User> documentation above. Defaults to B<false>.
4712
4713 =item B<SlaveNotifications> I<true|false>
4714
4715 If enabled, the plugin sends a notification if the replication slave I/O and /
4716 or SQL threads are not running. Defaults to B<false>.
4717
4718 =item B<WsrepStats> I<true|false>
4719
4720  Enable the collection of wsrep plugin statistics, used in Master-Master
4721  replication setups like in MySQL Galera/Percona XtraDB Cluster.
4722  User needs only privileges to execute 'SHOW GLOBAL STATUS'
4723
4724 =item B<ConnectTimeout> I<Seconds>
4725
4726 Sets the connect timeout for the MySQL client.
4727
4728 =item B<SSLKey> I<Path>
4729
4730 If provided, the X509 key in PEM format.
4731
4732 =item B<SSLCert> I<Path>
4733
4734 If provided, the X509 cert in PEM format.
4735
4736 =item B<SSLCA> I<Path>
4737
4738 If provided, the CA file in PEM format (check OpenSSL docs).
4739
4740 =item B<SSLCAPath> I<Path>
4741
4742 If provided, the CA directory (check OpenSSL docs).
4743
4744 =item B<SSLCipher> I<String>
4745
4746 If provided, the SSL cipher to use.
4747
4748 =back
4749
4750 =head2 Plugin C<netapp>
4751
4752 The netapp plugin can collect various performance and capacity information
4753 from a NetApp filer using the NetApp API.
4754
4755 Please note that NetApp has a wide line of products and a lot of different
4756 software versions for each of these products. This plugin was developed for a
4757 NetApp FAS3040 running OnTap 7.2.3P8 and tested on FAS2050 7.3.1.1L1,
4758 FAS3140 7.2.5.1 and FAS3020 7.2.4P9. It I<should> work for most combinations of
4759 model and software version but it is very hard to test this.
4760 If you have used this plugin with other models and/or software version, feel
4761 free to send us a mail to tell us about the results, even if it's just a short
4762 "It works".
4763
4764 To collect these data collectd will log in to the NetApp via HTTP(S) and HTTP
4765 basic authentication.
4766
4767 B<Do not use a regular user for this!> Create a special collectd user with just
4768 the minimum of capabilities needed. The user only needs the "login-http-admin"
4769 capability as well as a few more depending on which data will be collected.
4770 Required capabilities are documented below.
4771
4772 =head3 Synopsis
4773
4774  <Plugin "netapp">
4775    <Host "netapp1.example.com">
4776     Protocol      "https"
4777     Address       "10.0.0.1"
4778     Port          443
4779     User          "username"
4780     Password      "aef4Aebe"
4781     Interval      30
4782
4783     <WAFL>
4784       Interval 30
4785       GetNameCache   true
4786       GetDirCache    true
4787       GetBufferCache true
4788       GetInodeCache  true
4789     </WAFL>
4790
4791     <Disks>
4792       Interval 30
4793       GetBusy true
4794     </Disks>
4795
4796     <VolumePerf>
4797       Interval 30
4798       GetIO      "volume0"
4799       IgnoreSelectedIO      false
4800       GetOps     "volume0"
4801       IgnoreSelectedOps     false
4802       GetLatency "volume0"
4803       IgnoreSelectedLatency false
4804     </VolumePerf>
4805
4806     <VolumeUsage>
4807       Interval 30
4808       GetCapacity "vol0"
4809       GetCapacity "vol1"
4810       IgnoreSelectedCapacity false
4811       GetSnapshot "vol1"
4812       GetSnapshot "vol3"
4813       IgnoreSelectedSnapshot false
4814     </VolumeUsage>
4815
4816     <Quota>
4817       Interval 60
4818     </Quota>
4819
4820     <Snapvault>
4821       Interval 30
4822     </Snapvault>
4823
4824     <System>
4825       Interval 30
4826       GetCPULoad     true
4827       GetInterfaces  true
4828       GetDiskOps     true
4829       GetDiskIO      true
4830     </System>
4831
4832     <VFiler vfilerA>
4833       Interval 60
4834
4835       SnapVault true
4836       # ...
4837     </VFiler>
4838    </Host>
4839  </Plugin>
4840
4841 The netapp plugin accepts the following configuration options:
4842
4843 =over 4
4844
4845 =item B<Host> I<Name>
4846
4847 A host block defines one NetApp filer. It will appear in collectd with the name
4848 you specify here which does not have to be its real name nor its hostname (see
4849 the B<Address> option below).
4850
4851 =item B<VFiler> I<Name>
4852
4853 A B<VFiler> block may only be used inside a host block. It accepts all the
4854 same options as the B<Host> block (except for cascaded B<VFiler> blocks) and
4855 will execute all NetApp API commands in the context of the specified
4856 VFiler(R). It will appear in collectd with the name you specify here which
4857 does not have to be its real name. The VFiler name may be specified using the
4858 B<VFilerName> option. If this is not specified, it will default to the name
4859 you specify here.
4860
4861 The VFiler block inherits all connection related settings from the surrounding
4862 B<Host> block (which appear before the B<VFiler> block) but they may be
4863 overwritten inside the B<VFiler> block.
4864
4865 This feature is useful, for example, when using a VFiler as SnapVault target
4866 (supported since OnTap 8.1). In that case, the SnapVault statistics are not
4867 available in the host filer (vfiler0) but only in the respective VFiler
4868 context.
4869
4870 =item B<Protocol> B<httpd>|B<http>
4871
4872 The protocol collectd will use to query this host.
4873
4874 Optional
4875
4876 Type: string
4877
4878 Default: https
4879
4880 Valid options: http, https
4881
4882 =item B<Address> I<Address>
4883
4884 The hostname or IP address of the host.
4885
4886 Optional
4887
4888 Type: string
4889
4890 Default: The "host" block's name.
4891
4892 =item B<Port> I<Port>
4893
4894 The TCP port to connect to on the host.
4895
4896 Optional
4897
4898 Type: integer
4899
4900 Default: 80 for protocol "http", 443 for protocol "https"
4901
4902 =item B<User> I<User>
4903
4904 =item B<Password> I<Password>
4905
4906 The username and password to use to login to the NetApp.
4907
4908 Mandatory
4909
4910 Type: string
4911
4912 =item B<VFilerName> I<Name>
4913
4914 The name of the VFiler in which context to execute API commands. If not
4915 specified, the name provided to the B<VFiler> block will be used instead.
4916
4917 Optional
4918
4919 Type: string
4920
4921 Default: name of the B<VFiler> block
4922
4923 B<Note:> This option may only be used inside B<VFiler> blocks.
4924
4925 =item B<Interval> I<Interval>
4926
4927 B<TODO>
4928
4929 =back
4930
4931 The following options decide what kind of data will be collected. You can
4932 either use them as a block and fine tune various parameters inside this block,
4933 use them as a single statement to just accept all default values, or omit it to
4934 not collect any data.
4935
4936 The following options are valid inside all blocks:
4937
4938 =over 4
4939
4940 =item B<Interval> I<Seconds>
4941
4942 Collect the respective statistics every I<Seconds> seconds. Defaults to the
4943 host specific setting.
4944
4945 =back
4946
4947 =head3 The System block
4948
4949 This will collect various performance data about the whole system.
4950
4951 B<Note:> To get this data the collectd user needs the
4952 "api-perf-object-get-instances" capability.
4953
4954 =over 4
4955
4956 =item B<Interval> I<Seconds>
4957
4958 Collect disk statistics every I<Seconds> seconds.
4959
4960 =item B<GetCPULoad> B<true>|B<false>
4961
4962 If you set this option to true the current CPU usage will be read. This will be
4963 the average usage between all CPUs in your NetApp without any information about
4964 individual CPUs.
4965
4966 B<Note:> These are the same values that the NetApp CLI command "sysstat"
4967 returns in the "CPU" field.
4968
4969 Optional
4970
4971 Type: boolean
4972
4973 Default: true
4974
4975 Result: Two value lists of type "cpu", and type instances "idle" and "system".
4976
4977 =item B<GetInterfaces> B<true>|B<false>
4978
4979 If you set this option to true the current traffic of the network interfaces
4980 will be read. This will be the total traffic over all interfaces of your NetApp
4981 without any information about individual interfaces.
4982
4983 B<Note:> This is the same values that the NetApp CLI command "sysstat" returns
4984 in the "Net kB/s" field.
4985
4986 B<Or is it?>
4987
4988 Optional
4989
4990 Type: boolean
4991
4992 Default: true
4993
4994 Result: One value list of type "if_octects".
4995
4996 =item B<GetDiskIO> B<true>|B<false>
4997
4998 If you set this option to true the current IO throughput will be read. This
4999 will be the total IO of your NetApp without any information about individual
5000 disks, volumes or aggregates.
5001
5002 B<Note:> This is the same values that the NetApp CLI command "sysstat" returns
5003 in the "DiskE<nbsp>kB/s" field.
5004
5005 Optional
5006
5007 Type: boolean
5008
5009 Default: true
5010
5011 Result: One value list of type "disk_octets".
5012
5013 =item B<GetDiskOps> B<true>|B<false>
5014
5015 If you set this option to true the current number of HTTP, NFS, CIFS, FCP,
5016 iSCSI, etc. operations will be read. This will be the total number of
5017 operations on your NetApp without any information about individual volumes or
5018 aggregates.
5019
5020 B<Note:> These are the same values that the NetApp CLI command "sysstat"
5021 returns in the "NFS", "CIFS", "HTTP", "FCP" and "iSCSI" fields.
5022
5023 Optional
5024
5025 Type: boolean
5026
5027 Default: true
5028
5029 Result: A variable number of value lists of type "disk_ops_complex". Each type
5030 of operation will result in one value list with the name of the operation as
5031 type instance.
5032
5033 =back
5034
5035 =head3 The WAFL block
5036
5037 This will collect various performance data about the WAFL file system. At the
5038 moment this just means cache performance.
5039
5040 B<Note:> To get this data the collectd user needs the
5041 "api-perf-object-get-instances" capability.
5042
5043 B<Note:> The interface to get these values is classified as "Diagnostics" by
5044 NetApp. This means that it is not guaranteed to be stable even between minor
5045 releases.
5046
5047 =over 4
5048
5049 =item B<Interval> I<Seconds>
5050
5051 Collect disk statistics every I<Seconds> seconds.
5052
5053 =item B<GetNameCache> B<true>|B<false>
5054
5055 Optional
5056
5057 Type: boolean
5058
5059 Default: true
5060
5061 Result: One value list of type "cache_ratio" and type instance
5062 "name_cache_hit".
5063
5064 =item B<GetDirCache> B<true>|B<false>
5065
5066 Optional
5067
5068 Type: boolean
5069
5070 Default: true
5071
5072 Result: One value list of type "cache_ratio" and type instance "find_dir_hit".
5073
5074 =item B<GetInodeCache> B<true>|B<false>
5075
5076 Optional
5077
5078 Type: boolean
5079
5080 Default: true
5081
5082 Result: One value list of type "cache_ratio" and type instance
5083 "inode_cache_hit".
5084
5085 =item B<GetBufferCache> B<true>|B<false>
5086
5087 B<Note:> This is the same value that the NetApp CLI command "sysstat" returns
5088 in the "Cache hit" field.
5089
5090 Optional
5091
5092 Type: boolean
5093
5094 Default: true
5095
5096 Result: One value list of type "cache_ratio" and type instance "buf_hash_hit".
5097
5098 =back
5099
5100 =head3 The Disks block
5101
5102 This will collect performance data about the individual disks in the NetApp.
5103
5104 B<Note:> To get this data the collectd user needs the
5105 "api-perf-object-get-instances" capability.
5106
5107 =over 4
5108
5109 =item B<Interval> I<Seconds>
5110
5111 Collect disk statistics every I<Seconds> seconds.
5112
5113 =item B<GetBusy> B<true>|B<false>
5114
5115 If you set this option to true the busy time of all disks will be calculated
5116 and the value of the busiest disk in the system will be written.
5117
5118 B<Note:> This is the same values that the NetApp CLI command "sysstat" returns
5119 in the "Disk util" field. Probably.
5120
5121 Optional
5122
5123 Type: boolean
5124
5125 Default: true
5126
5127 Result: One value list of type "percent" and type instance "disk_busy".
5128
5129 =back
5130
5131 =head3 The VolumePerf block
5132
5133 This will collect various performance data about the individual volumes.
5134
5135 You can select which data to collect about which volume using the following
5136 options. They follow the standard ignorelist semantic.
5137
5138 B<Note:> To get this data the collectd user needs the
5139 I<api-perf-object-get-instances> capability.
5140
5141 =over 4
5142
5143 =item B<Interval> I<Seconds>
5144
5145 Collect volume performance data every I<Seconds> seconds.
5146
5147 =item B<GetIO> I<Volume>
5148
5149 =item B<GetOps> I<Volume>
5150
5151 =item B<GetLatency> I<Volume>
5152
5153 Select the given volume for IO, operations or latency statistics collection.
5154 The argument is the name of the volume without the C</vol/> prefix.
5155
5156 Since the standard ignorelist functionality is used here, you can use a string
5157 starting and ending with a slash to specify regular expression matching: To
5158 match the volumes "vol0", "vol2" and "vol7", you can use this regular
5159 expression:
5160
5161   GetIO "/^vol[027]$/"
5162
5163 If no regular expression is specified, an exact match is required. Both,
5164 regular and exact matching are case sensitive.
5165
5166 If no volume was specified at all for either of the three options, that data
5167 will be collected for all available volumes.
5168
5169 See F</"IGNORELISTS"> for details.
5170
5171 =item B<IgnoreSelectedIO> B<true>|B<false>
5172
5173 =item B<IgnoreSelectedOps> B<true>|B<false>
5174
5175 =item B<IgnoreSelectedLatency> B<true>|B<false>
5176
5177 When set to B<true>, the volumes selected for IO, operations or latency
5178 statistics collection will be ignored and the data will be collected for all
5179 other volumes.
5180
5181 When set to B<false>, data will only be collected for the specified volumes and
5182 all other volumes will be ignored.
5183
5184 If no volumes have been specified with the above B<Get*> options, all volumes
5185 will be collected regardless of the B<IgnoreSelected*> option.
5186
5187 Defaults to B<false>
5188
5189 =back
5190
5191 =head3 The VolumeUsage block
5192
5193 This will collect capacity data about the individual volumes.
5194
5195 B<Note:> To get this data the collectd user needs the I<api-volume-list-info>
5196 capability.
5197
5198 =over 4
5199
5200 =item B<Interval> I<Seconds>
5201
5202 Collect volume usage statistics every I<Seconds> seconds.
5203
5204 =item B<GetCapacity> I<VolumeName>
5205
5206 The current capacity of the volume will be collected. This will result in two
5207 to four value lists, depending on the configuration of the volume. All data
5208 sources are of type "df_complex" with the name of the volume as
5209 plugin_instance.
5210
5211 There will be type_instances "used" and "free" for the number of used and
5212 available bytes on the volume.  If the volume has some space reserved for
5213 snapshots, a type_instance "snap_reserved" will be available.  If the volume
5214 has SIS enabled, a type_instance "sis_saved" will be available. This is the
5215 number of bytes saved by the SIS feature.
5216
5217 B<Note:> The current NetApp API has a bug that results in this value being
5218 reported as a 32E<nbsp>bit number. This plugin tries to guess the correct
5219 number which works most of the time.  If you see strange values here, bug
5220 NetApp support to fix this.
5221
5222 Repeat this option to specify multiple volumes.
5223
5224 =item B<IgnoreSelectedCapacity> B<true>|B<false>
5225
5226 Specify whether to collect only the volumes selected by the B<GetCapacity>
5227 option or to ignore those volumes. B<IgnoreSelectedCapacity> defaults to
5228 B<false>. However, if no B<GetCapacity> option is specified at all, all
5229 capacities will be selected anyway.
5230
5231 =item B<GetSnapshot> I<VolumeName>
5232
5233 Select volumes from which to collect snapshot information.
5234
5235 Usually, the space used for snapshots is included in the space reported as
5236 "used". If snapshot information is collected as well, the space used for
5237 snapshots is subtracted from the used space.
5238
5239 To make things even more interesting, it is possible to reserve space to be
5240 used for snapshots. If the space required for snapshots is less than that
5241 reserved space, there is "reserved free" and "reserved used" space in addition
5242 to "free" and "used". If the space required for snapshots exceeds the reserved
5243 space, that part allocated in the normal space is subtracted from the "used"
5244 space again.
5245
5246 Repeat this option to specify multiple volumes.
5247
5248 =item B<IgnoreSelectedSnapshot>
5249
5250 Specify whether to collect only the volumes selected by the B<GetSnapshot>
5251 option or to ignore those volumes. B<IgnoreSelectedSnapshot> defaults to
5252 B<false>. However, if no B<GetSnapshot> option is specified at all, all
5253 capacities will be selected anyway.
5254
5255 =back
5256
5257 =head3 The Quota block
5258
5259 This will collect (tree) quota statistics (used disk space and number of used
5260 files). This mechanism is useful to get usage information for single qtrees.
5261 In case the quotas are not used for any other purpose, an entry similar to the
5262 following in C</etc/quotas> would be sufficient:
5263
5264   /vol/volA/some_qtree tree - - - - -
5265
5266 After adding the entry, issue C<quota on -w volA> on the NetApp filer.
5267
5268 =over 4
5269
5270 =item B<Interval> I<Seconds>
5271
5272 Collect SnapVault(R) statistics every I<Seconds> seconds.
5273
5274 =back
5275
5276 =head3 The SnapVault block
5277
5278 This will collect statistics about the time and traffic of SnapVault(R)
5279 transfers.
5280
5281 =over 4
5282
5283 =item B<Interval> I<Seconds>
5284
5285 Collect SnapVault(R) statistics every I<Seconds> seconds.
5286
5287 =back
5288
5289 =head2 Plugin C<netlink>
5290
5291 The C<netlink> plugin uses a netlink socket to query the Linux kernel about
5292 statistics of various interface and routing aspects.
5293
5294 =over 4
5295
5296 =item B<Interface> I<Interface>
5297
5298 =item B<VerboseInterface> I<Interface>
5299
5300 Instruct the plugin to collect interface statistics. This is basically the same
5301 as the statistics provided by the C<interface> plugin (see above) but
5302 potentially much more detailed.
5303
5304 When configuring with B<Interface> only the basic statistics will be collected,
5305 namely octets, packets, and errors. These statistics are collected by
5306 the C<interface> plugin, too, so using both at the same time is no benefit.
5307
5308 When configured with B<VerboseInterface> all counters B<except> the basic ones,
5309 so that no data needs to be collected twice if you use the C<interface> plugin.
5310 This includes dropped packets, received multicast packets, collisions and a
5311 whole zoo of differentiated RX and TX errors. You can try the following command
5312 to get an idea of what awaits you:
5313
5314   ip -s -s link list
5315
5316 If I<Interface> is B<All>, all interfaces will be selected.
5317
5318 =item B<QDisc> I<Interface> [I<QDisc>]
5319
5320 =item B<Class> I<Interface> [I<Class>]
5321
5322 =item B<Filter> I<Interface> [I<Filter>]
5323
5324 Collect the octets and packets that pass a certain qdisc, class or filter.
5325
5326 QDiscs and classes are identified by their type and handle (or classid).
5327 Filters don't necessarily have a handle, therefore the parent's handle is used.
5328 The notation used in collectd differs from that used in tc(1) in that it
5329 doesn't skip the major or minor number if it's zero and doesn't print special
5330 ids by their name. So, for example, a qdisc may be identified by
5331 C<pfifo_fast-1:0> even though the minor number of B<all> qdiscs is zero and
5332 thus not displayed by tc(1).
5333
5334 If B<QDisc>, B<Class>, or B<Filter> is given without the second argument,
5335 i.E<nbsp>.e. without an identifier, all qdiscs, classes, or filters that are
5336 associated with that interface will be collected.
5337
5338 Since a filter itself doesn't necessarily have a handle, the parent's handle is
5339 used. This may lead to problems when more than one filter is attached to a
5340 qdisc or class. This isn't nice, but we don't know how this could be done any
5341 better. If you have a idea, please don't hesitate to tell us.
5342
5343 As with the B<Interface> option you can specify B<All> as the interface,
5344 meaning all interfaces.
5345
5346 Here are some examples to help you understand the above text more easily:
5347
5348   <Plugin netlink>
5349     VerboseInterface "All"
5350     QDisc "eth0" "pfifo_fast-1:0"
5351     QDisc "ppp0"
5352     Class "ppp0" "htb-1:10"
5353     Filter "ppp0" "u32-1:0"
5354   </Plugin>
5355
5356 See F</"IGNORELISTS"> for details.
5357
5358 =item B<IgnoreSelected>
5359
5360 The behavior is the same as with all other similar plugins: If nothing is
5361 selected at all, everything is collected. If some things are selected using the
5362 options described above, only these statistics are collected. If you set
5363 B<IgnoreSelected> to B<true>, this behavior is inverted, i.E<nbsp>e. the
5364 specified statistics will not be collected.
5365
5366 =back
5367
5368 =head2 Plugin C<network>
5369
5370 The Network plugin sends data to a remote instance of collectd, receives data
5371 from a remote instance, or both at the same time. Data which has been received
5372 from the network is usually not transmitted again, but this can be activated, see
5373 the B<Forward> option below.
5374
5375 The default IPv6 multicast group is C<ff18::efc0:4a42>. The default IPv4
5376 multicast group is C<239.192.74.66>. The default I<UDP> port is B<25826>.
5377
5378 Both, B<Server> and B<Listen> can be used as single option or as block. When
5379 used as block, given options are valid for this socket only. The following
5380 example will export the metrics twice: Once to an "internal" server (without
5381 encryption and signing) and one to an external server (with cryptographic
5382 signature):
5383
5384  <Plugin "network">
5385    # Export to an internal server
5386    # (demonstrates usage without additional options)
5387    Server "collectd.internal.tld"
5388
5389    # Export to an external server
5390    # (demonstrates usage with signature options)
5391    <Server "collectd.external.tld">
5392      SecurityLevel "sign"
5393      Username "myhostname"
5394      Password "ohl0eQue"
5395    </Server>
5396  </Plugin>
5397
5398 =over 4
5399
5400 =item B<E<lt>Server> I<Host> [I<Port>]B<E<gt>>
5401
5402 The B<Server> statement/block sets the server to send datagrams to. The
5403 statement may occur multiple times to send each datagram to multiple
5404 destinations.
5405
5406 The argument I<Host> may be a hostname, an IPv4 address or an IPv6 address. The
5407 optional second argument specifies a port number or a service name. If not
5408 given, the default, B<25826>, is used.
5409
5410 The following options are recognized within B<Server> blocks:
5411
5412 =over 4
5413
5414 =item B<SecurityLevel> B<Encrypt>|B<Sign>|B<None>
5415
5416 Set the security you require for network communication. When the security level
5417 has been set to B<Encrypt>, data sent over the network will be encrypted using
5418 I<AES-256>. The integrity of encrypted packets is ensured using I<SHA-1>. When
5419 set to B<Sign>, transmitted data is signed using the I<HMAC-SHA-256> message
5420 authentication code. When set to B<None>, data is sent without any security.
5421
5422 This feature is only available if the I<network> plugin was linked with
5423 I<libgcrypt>.
5424
5425 =item B<Username> I<Username>
5426
5427 Sets the username to transmit. This is used by the server to lookup the
5428 password. See B<AuthFile> below. All security levels except B<None> require
5429 this setting.
5430
5431 This feature is only available if the I<network> plugin was linked with
5432 I<libgcrypt>.
5433
5434 =item B<Password> I<Password>
5435
5436 Sets a password (shared secret) for this socket. All security levels except
5437 B<None> require this setting.
5438
5439 This feature is only available if the I<network> plugin was linked with
5440 I<libgcrypt>.
5441
5442 =item B<Interface> I<Interface name>
5443
5444 Set the outgoing interface for IP packets. This applies at least
5445 to IPv6 packets and if possible to IPv4. If this option is not applicable,
5446 undefined or a non-existent interface name is specified, the default
5447 behavior is to let the kernel choose the appropriate interface. Be warned
5448 that the manual selection of an interface for unicast traffic is only
5449 necessary in rare cases.
5450
5451 =item B<BindAddress> I<IP Address>
5452
5453 Set the outgoing IP address for IP packets. This option can be used instead of
5454 the I<Interface> option to explicitly define the IP address which will be used
5455 to send Packets to the remote server. 
5456
5457 =item B<ResolveInterval> I<Seconds>
5458
5459 Sets the interval at which to re-resolve the DNS for the I<Host>. This is
5460 useful to force a regular DNS lookup to support a high availability setup. If
5461 not specified, re-resolves are never attempted.
5462
5463 =back
5464
5465 =item B<E<lt>Listen> I<Host> [I<Port>]B<E<gt>>
5466
5467 The B<Listen> statement sets the interfaces to bind to. When multiple
5468 statements are found the daemon will bind to multiple interfaces.
5469
5470 The argument I<Host> may be a hostname, an IPv4 address or an IPv6 address. If
5471 the argument is a multicast address the daemon will join that multicast group.
5472 The optional second argument specifies a port number or a service name. If not
5473 given, the default, B<25826>, is used.
5474
5475 The following options are recognized within C<E<lt>ListenE<gt>> blocks:
5476
5477 =over 4
5478
5479 =item B<SecurityLevel> B<Encrypt>|B<Sign>|B<None>
5480
5481 Set the security you require for network communication. When the security level
5482 has been set to B<Encrypt>, only encrypted data will be accepted. The integrity
5483 of encrypted packets is ensured using I<SHA-1>. When set to B<Sign>, only
5484 signed and encrypted data is accepted. When set to B<None>, all data will be
5485 accepted. If an B<AuthFile> option was given (see below), encrypted data is
5486 decrypted if possible.
5487
5488 This feature is only available if the I<network> plugin was linked with
5489 I<libgcrypt>.
5490
5491 =item B<AuthFile> I<Filename>
5492
5493 Sets a file in which usernames are mapped to passwords. These passwords are
5494 used to verify signatures and to decrypt encrypted network packets. If
5495 B<SecurityLevel> is set to B<None>, this is optional. If given, signed data is
5496 verified and encrypted packets are decrypted. Otherwise, signed data is
5497 accepted without checking the signature and encrypted data cannot be decrypted.
5498 For the other security levels this option is mandatory.
5499
5500 The file format is very simple: Each line consists of a username followed by a
5501 colon and any number of spaces followed by the password. To demonstrate, an
5502 example file could look like this:
5503
5504   user0: foo
5505   user1: bar
5506
5507 Each time a packet is received, the modification time of the file is checked
5508 using L<stat(2)>. If the file has been changed, the contents is re-read. While
5509 the file is being read, it is locked using L<fcntl(2)>.
5510
5511 =item B<Interface> I<Interface name>
5512
5513 Set the incoming interface for IP packets explicitly. This applies at least
5514 to IPv6 packets and if possible to IPv4. If this option is not applicable,
5515 undefined or a non-existent interface name is specified, the default
5516 behavior is, to let the kernel choose the appropriate interface. Thus incoming
5517 traffic gets only accepted, if it arrives on the given interface.
5518
5519 =back
5520
5521 =item B<TimeToLive> I<1-255>
5522
5523 Set the time-to-live of sent packets. This applies to all, unicast and
5524 multicast, and IPv4 and IPv6 packets. The default is to not change this value.
5525 That means that multicast packets will be sent with a TTL of C<1> (one) on most
5526 operating systems.
5527
5528 =item B<MaxPacketSize> I<1024-65535>
5529
5530 Set the maximum size for datagrams received over the network. Packets larger
5531 than this will be truncated. Defaults to 1452E<nbsp>bytes, which is the maximum
5532 payload size that can be transmitted in one Ethernet frame using IPv6E<nbsp>/
5533 UDP.
5534
5535 On the server side, this limit should be set to the largest value used on
5536 I<any> client. Likewise, the value on the client must not be larger than the
5537 value on the server, or data will be lost.
5538
5539 B<Compatibility:> Versions prior to I<versionE<nbsp>4.8> used a fixed sized
5540 buffer of 1024E<nbsp>bytes. Versions I<4.8>, I<4.9> and I<4.10> used a default
5541 value of 1024E<nbsp>bytes to avoid problems when sending data to an older
5542 server.
5543
5544 =item B<Forward> I<true|false>
5545
5546 If set to I<true>, write packets that were received via the network plugin to
5547 the sending sockets. This should only be activated when the B<Listen>- and
5548 B<Server>-statements differ. Otherwise packets may be send multiple times to
5549 the same multicast group. While this results in more network traffic than
5550 necessary it's not a huge problem since the plugin has a duplicate detection,
5551 so the values will not loop.
5552
5553 =item B<ReportStats> B<true>|B<false>
5554
5555 The network plugin cannot only receive and send statistics, it can also create
5556 statistics about itself. Collectd data included the number of received and
5557 sent octets and packets, the length of the receive queue and the number of
5558 values handled. When set to B<true>, the I<Network plugin> will make these
5559 statistics available. Defaults to B<false>.
5560
5561 =back
5562
5563 =head2 Plugin C<nfs>
5564
5565 The I<nfs plugin> collects information about the usage of the Network File
5566 System (NFS). It counts the number of procedure calls for each procedure,
5567 grouped by version and whether the system runs as server or client.
5568
5569 It is possibly to omit metrics for a specific NFS version by setting one or
5570 more of the following options to B<false> (all of them default to B<true>).
5571
5572 =over 4
5573
5574 =item B<ReportV2> B<true>|B<false>
5575
5576 =item B<ReportV3> B<true>|B<false>
5577
5578 =item B<ReportV4> B<true>|B<false>
5579
5580 =back
5581
5582 =head2 Plugin C<nginx>
5583
5584 This plugin collects the number of connections and requests handled by the
5585 C<nginx daemon> (speak: engineE<nbsp>X), a HTTP and mail server/proxy. It
5586 queries the page provided by the C<ngx_http_stub_status_module> module, which
5587 isn't compiled by default. Please refer to
5588 L<http://wiki.codemongers.com/NginxStubStatusModule> for more information on
5589 how to compile and configure nginx and this module.
5590
5591 The following options are accepted by the C<nginx plugin>:
5592
5593 =over 4
5594
5595 =item B<URL> I<http://host/nginx_status>
5596
5597 Sets the URL of the C<ngx_http_stub_status_module> output.
5598
5599 =item B<User> I<Username>
5600
5601 Optional user name needed for authentication.
5602
5603 =item B<Password> I<Password>
5604
5605 Optional password needed for authentication.
5606
5607 =item B<VerifyPeer> B<true|false>
5608
5609 Enable or disable peer SSL certificate verification. See
5610 L<http://curl.haxx.se/docs/sslcerts.html> for details. Enabled by default.
5611
5612 =item B<VerifyHost> B<true|false>
5613
5614 Enable or disable peer host name verification. If enabled, the plugin checks
5615 if the C<Common Name> or a C<Subject Alternate Name> field of the SSL
5616 certificate matches the host name provided by the B<URL> option. If this
5617 identity check fails, the connection is aborted. Obviously, only works when
5618 connecting to a SSL enabled server. Enabled by default.
5619
5620 =item B<CACert> I<File>
5621
5622 File that holds one or more SSL certificates. If you want to use HTTPS you will
5623 possibly need this option. What CA certificates come bundled with C<libcurl>
5624 and are checked by default depends on the distribution you use.
5625
5626 =item B<Timeout> I<Milliseconds>
5627
5628 The B<Timeout> option sets the overall timeout for HTTP requests to B<URL>, in
5629 milliseconds. By default, the configured B<Interval> is used to set the
5630 timeout.
5631
5632 =back
5633
5634 =head2 Plugin C<notify_desktop>
5635
5636 This plugin sends a desktop notification to a notification daemon, as defined
5637 in the Desktop Notification Specification. To actually display the
5638 notifications, B<notification-daemon> is required and B<collectd> has to be
5639 able to access the X server (i.E<nbsp>e., the C<DISPLAY> and C<XAUTHORITY>
5640 environment variables have to be set correctly) and the D-Bus message bus.
5641
5642 The Desktop Notification Specification can be found at
5643 L<http://www.galago-project.org/specs/notification/>.
5644
5645 =over 4
5646
5647 =item B<OkayTimeout> I<timeout>
5648
5649 =item B<WarningTimeout> I<timeout>
5650
5651 =item B<FailureTimeout> I<timeout>
5652
5653 Set the I<timeout>, in milliseconds, after which to expire the notification
5654 for C<OKAY>, C<WARNING> and C<FAILURE> severities respectively. If zero has
5655 been specified, the displayed notification will not be closed at all - the
5656 user has to do so herself. These options default to 5000. If a negative number
5657 has been specified, the default is used as well.
5658
5659 =back
5660
5661 =head2 Plugin C<notify_email>
5662
5663 The I<notify_email> plugin uses the I<ESMTP> library to send notifications to a
5664 configured email address.
5665
5666 I<libESMTP> is available from L<http://www.stafford.uklinux.net/libesmtp/>.
5667
5668 Available configuration options:
5669
5670 =over 4
5671
5672 =item B<From> I<Address>
5673
5674 Email address from which the emails should appear to come from.
5675
5676 Default: C<root@localhost>
5677
5678 =item B<Recipient> I<Address>
5679
5680 Configures the email address(es) to which the notifications should be mailed.
5681 May be repeated to send notifications to multiple addresses.
5682
5683 At least one B<Recipient> must be present for the plugin to work correctly.
5684
5685 =item B<SMTPServer> I<Hostname>
5686
5687 Hostname of the SMTP server to connect to.
5688
5689 Default: C<localhost>
5690
5691 =item B<SMTPPort> I<Port>
5692
5693 TCP port to connect to.
5694
5695 Default: C<25>
5696
5697 =item B<SMTPUser> I<Username>
5698
5699 Username for ASMTP authentication. Optional.
5700
5701 =item B<SMTPPassword> I<Password>
5702
5703 Password for ASMTP authentication. Optional.
5704
5705 =item B<Subject> I<Subject>
5706
5707 Subject-template to use when sending emails. There must be exactly two
5708 string-placeholders in the subject, given in the standard I<printf(3)> syntax,
5709 i.E<nbsp>e. C<%s>. The first will be replaced with the severity, the second
5710 with the hostname.
5711
5712 Default: C<Collectd notify: %s@%s>
5713
5714 =back
5715
5716 =head2 Plugin C<notify_nagios>
5717
5718 The I<notify_nagios> plugin writes notifications to Nagios' I<command file> as
5719 a I<passive service check result>.
5720
5721 Available configuration options:
5722
5723 =over 4
5724
5725 =item B<CommandFile> I<Path>
5726
5727 Sets the I<command file> to write to. Defaults to F</usr/local/nagios/var/rw/nagios.cmd>.
5728
5729 =back
5730
5731 =head2 Plugin C<ntpd>
5732
5733 The C<ntpd> plugin collects per-peer ntp data such as time offset and time
5734 dispersion.
5735
5736 For talking to B<ntpd>, it mimics what the B<ntpdc> control program does on
5737 the wire - using B<mode 7> specific requests. This mode is deprecated with
5738 newer B<ntpd> releases (4.2.7p230 and later). For the C<ntpd> plugin to work
5739 correctly with them, the ntp daemon must be explicitly configured to
5740 enable B<mode 7> (which is disabled by default). Refer to the I<ntp.conf(5)>
5741 manual page for details.
5742
5743 Available configuration options for the C<ntpd> plugin:
5744
5745 =over 4
5746
5747 =item B<Host> I<Hostname>
5748
5749 Hostname of the host running B<ntpd>. Defaults to B<localhost>.
5750
5751 =item B<Port> I<Port>
5752
5753 UDP-Port to connect to. Defaults to B<123>.
5754
5755 =item B<ReverseLookups> B<true>|B<false>
5756
5757 Sets whether or not to perform reverse lookups on peers. Since the name or
5758 IP-address may be used in a filename it is recommended to disable reverse
5759 lookups. The default is to do reverse lookups to preserve backwards
5760 compatibility, though.
5761
5762 =item B<IncludeUnitID> B<true>|B<false>
5763
5764 When a peer is a refclock, include the unit ID in the I<type instance>.
5765 Defaults to B<false> for backward compatibility.
5766
5767 If two refclock peers use the same driver and this is B<false>, the plugin will
5768 try to write simultaneous measurements from both to the same type instance.
5769 This will result in error messages in the log and only one set of measurements
5770 making it through.
5771
5772 =back
5773
5774 =head2 Plugin C<nut>
5775
5776 =over 4
5777
5778 =item B<UPS> I<upsname>B<@>I<hostname>[B<:>I<port>]
5779
5780 Add a UPS to collect data from. The format is identical to the one accepted by
5781 L<upsc(8)>.
5782
5783 =item B<ForceSSL> B<true>|B<false>
5784
5785 Stops connections from falling back to unsecured if an SSL connection
5786 cannot be established. Defaults to false if undeclared.
5787
5788 =item B<VerifyPeer> I<true>|I<false>
5789
5790 If set to true, requires a CAPath be provided. Will use the CAPath to find
5791 certificates to use as Trusted Certificates to validate a upsd server certificate.
5792 If validation of the upsd server certificate fails, the connection will not be
5793 established. If ForceSSL is undeclared or set to false, setting VerifyPeer to true
5794 will override and set ForceSSL to true.
5795
5796 =item B<CAPath> I/path/to/certs/folder
5797
5798 If VerifyPeer is set to true, this is required. Otherwise this is ignored.
5799 The folder pointed at must contain certificate(s) named according to their hash.
5800 Ex: XXXXXXXX.Y where X is the hash value of a cert and Y is 0. If name collisions
5801 occur because two different certs have the same hash value, Y can be  incremented
5802 in order to avoid conflict. To create a symbolic link to a certificate the following
5803 command can be used from within the directory where the cert resides:
5804
5805 C<ln -s some.crt ./$(openssl x509 -hash -noout -in some.crt).0>
5806
5807 Alternatively, the package openssl-perl provides a command C<c_rehash> that will
5808 generate links like the one described above for ALL certs in a given folder.
5809 Example usage:
5810 C<c_rehash /path/to/certs/folder>
5811
5812 =item B<ConnectTimeout> I<Milliseconds>
5813
5814 The B<ConnectTimeout> option sets the connect timeout, in milliseconds.
5815 By default, the configured B<Interval> is used to set the timeout.
5816
5817 =back
5818
5819 =head2 Plugin C<olsrd>
5820
5821 The I<olsrd> plugin connects to the TCP port opened by the I<txtinfo> plugin of
5822 the Optimized Link State Routing daemon and reads information about the current
5823 state of the meshed network.
5824
5825 The following configuration options are understood:
5826
5827 =over 4
5828
5829 =item B<Host> I<Host>
5830
5831 Connect to I<Host>. Defaults to B<"localhost">.
5832
5833 =item B<Port> I<Port>
5834
5835 Specifies the port to connect to. This must be a string, even if you give the
5836 port as a number rather than a service name. Defaults to B<"2006">.
5837
5838 =item B<CollectLinks> B<No>|B<Summary>|B<Detail>
5839
5840 Specifies what information to collect about links, i.E<nbsp>e. direct
5841 connections of the daemon queried. If set to B<No>, no information is
5842 collected. If set to B<Summary>, the number of links and the average of all
5843 I<link quality> (LQ) and I<neighbor link quality> (NLQ) values is calculated.
5844 If set to B<Detail> LQ and NLQ are collected per link.
5845
5846 Defaults to B<Detail>.
5847
5848 =item B<CollectRoutes> B<No>|B<Summary>|B<Detail>
5849
5850 Specifies what information to collect about routes of the daemon queried. If
5851 set to B<No>, no information is collected. If set to B<Summary>, the number of
5852 routes and the average I<metric> and I<ETX> is calculated. If set to B<Detail>
5853 metric and ETX are collected per route.
5854
5855 Defaults to B<Summary>.
5856
5857 =item B<CollectTopology> B<No>|B<Summary>|B<Detail>
5858
5859 Specifies what information to collect about the global topology. If set to
5860 B<No>, no information is collected. If set to B<Summary>, the number of links
5861 in the entire topology and the average I<link quality> (LQ) is calculated.
5862 If set to B<Detail> LQ and NLQ are collected for each link in the entire topology.
5863
5864 Defaults to B<Summary>.
5865
5866 =back
5867
5868 =head2 Plugin C<onewire>
5869
5870 B<EXPERIMENTAL!> See notes below.
5871
5872 The C<onewire> plugin uses the B<owcapi> library from the B<owfs> project
5873 L<http://owfs.org/> to read sensors connected via the onewire bus.
5874
5875 It can be used in two possible modes - standard or advanced.
5876
5877 In the standard mode only temperature sensors (sensors with the family code
5878 C<10>, C<22> and C<28> - e.g. DS1820, DS18S20, DS1920) can be read. If you have
5879 other sensors you would like to have included, please send a sort request to
5880 the mailing list. You can select sensors to be read or to be ignored depending
5881 on the option B<IgnoreSelected>). When no list is provided the whole bus is
5882 walked and all sensors are read.
5883
5884 Hubs (the DS2409 chips) are working, but read the note, why this plugin is
5885 experimental, below.
5886
5887 In the advanced mode you can configure any sensor to be read (only numerical
5888 value) using full OWFS path (e.g. "/uncached/10.F10FCA000800/temperature").
5889 In this mode you have to list all the sensors. Neither default bus walk nor
5890 B<IgnoreSelected> are used here. Address and type (file) is extracted from
5891 the path automatically and should produce compatible structure with the "standard"
5892 mode (basically the path is expected as for example
5893 "/uncached/10.F10FCA000800/temperature" where it would extract address part
5894 "F10FCA000800" and the rest after the slash is considered the type - here
5895 "temperature").
5896 There are two advantages to this mode - you can access virtually any sensor
5897 (not just temperature), select whether to use cached or directly read values
5898 and it is slighlty faster. The downside is more complex configuration.
5899
5900 The two modes are distinguished automatically by the format of the address.
5901 It is not possible to mix the two modes. Once a full path is detected in any
5902 B<Sensor> then the whole addressing (all sensors) is considered to be this way
5903 (and as standard addresses will fail parsing they will be ignored).
5904
5905 =over 4
5906
5907 =item B<Device> I<Device>
5908
5909 Sets the device to read the values from. This can either be a "real" hardware
5910 device, such as a serial port or an USB port, or the address of the
5911 L<owserver(1)> socket, usually B<localhost:4304>.
5912
5913 Though the documentation claims to automatically recognize the given address
5914 format, with versionE<nbsp>2.7p4 we had to specify the type explicitly. So
5915 with that version, the following configuration worked for us:
5916
5917   <Plugin onewire>
5918     Device "-s localhost:4304"
5919   </Plugin>
5920
5921 This directive is B<required> and does not have a default value.
5922
5923 =item B<Sensor> I<Sensor>
5924
5925 In the standard mode selects sensors to collect or to ignore
5926 (depending on B<IgnoreSelected>, see below). Sensors are specified without
5927 the family byte at the beginning, so you have to use for example C<F10FCA000800>,
5928 and B<not> include the leading C<10.> family byte and point.
5929 When no B<Sensor> is configured the whole Onewire bus is walked and all supported
5930 sensors (see above) are read.
5931
5932 In the advanced mode the B<Sensor> specifies full OWFS path - e.g.
5933 C</uncached/10.F10FCA000800/temperature> (or when cached values are OK
5934 C</10.F10FCA000800/temperature>). B<IgnoreSelected> is not used.
5935
5936 As there can be multiple devices on the bus you can list multiple sensor (use
5937 multiple B<Sensor> elements).
5938
5939 See F</"IGNORELISTS"> for details.
5940
5941 =item B<IgnoreSelected> I<true>|I<false>
5942
5943 If no configuration is given, the B<onewire> plugin will collect data from all
5944 sensors found. This may not be practical, especially if sensors are added and
5945 removed regularly. Sometimes, however, it's easier/preferred to collect only
5946 specific sensors or all sensors I<except> a few specified ones. This option
5947 enables you to do that: By setting B<IgnoreSelected> to I<true> the effect of
5948 B<Sensor> is inverted: All selected interfaces are ignored and all other
5949 interfaces are collected.
5950
5951 Used only in the standard mode - see above.
5952
5953 =item B<Interval> I<Seconds>
5954
5955 Sets the interval in which all sensors should be read. If not specified, the
5956 global B<Interval> setting is used.
5957
5958 =back
5959
5960 B<EXPERIMENTAL!> The C<onewire> plugin is experimental, because it doesn't yet
5961 work with big setups. It works with one sensor being attached to one
5962 controller, but as soon as you throw in a couple more senors and maybe a hub
5963 or two, reading all values will take more than ten seconds (the default
5964 interval). We will probably add some separate thread for reading the sensors
5965 and some cache or something like that, but it's not done yet. We will try to
5966 maintain backwards compatibility in the future, but we can't promise. So in
5967 short: If it works for you: Great! But keep in mind that the config I<might>
5968 change, though this is unlikely. Oh, and if you want to help improving this
5969 plugin, just send a short notice to the mailing list. ThanksE<nbsp>:)
5970
5971 =head2 Plugin C<openldap>
5972
5973 To use the C<openldap> plugin you first need to configure the I<OpenLDAP>
5974 server correctly. The backend database C<monitor> needs to be loaded and
5975 working. See slapd-monitor(5) for the details.
5976
5977 The configuration of the C<openldap> plugin consists of one or more B<Instance>
5978 blocks. Each block requires one string argument as the instance name. For
5979 example:
5980
5981  <Plugin "openldap">
5982    <Instance "foo">
5983      URL "ldap://localhost/"
5984    </Instance>
5985    <Instance "bar">
5986      URL "ldaps://localhost/"
5987    </Instance>
5988  </Plugin>
5989
5990 The instance name will be used as the I<plugin instance>. To emulate the old
5991 (versionE<nbsp>4) behavior, you can use an empty string (""). In order for the
5992 plugin to work correctly, each instance name must be unique. This is not
5993 enforced by the plugin and it is your responsibility to ensure it is.
5994
5995 The following options are accepted within each B<Instance> block:
5996
5997 =over 4
5998
5999 =item B<URL> I<ldap://host/binddn>
6000
6001 Sets the URL to use to connect to the I<OpenLDAP> server. This option is
6002 I<mandatory>.
6003
6004 =item B<BindDN> I<BindDN>
6005
6006 Name in the form of an LDAP distinguished name intended to be used for
6007 authentication. Defaults to empty string to establish an anonymous authorization.
6008
6009 =item B<Password> I<Password>
6010
6011 Password for simple bind authentication. If this option is not set,
6012 unauthenticated bind operation is used.
6013
6014 =item B<StartTLS> B<true|false>
6015
6016 Defines whether TLS must be used when connecting to the I<OpenLDAP> server.
6017 Disabled by default.
6018
6019 =item B<VerifyHost> B<true|false>
6020
6021 Enables or disables peer host name verification. If enabled, the plugin checks
6022 if the C<Common Name> or a C<Subject Alternate Name> field of the SSL
6023 certificate matches the host name provided by the B<URL> option. If this
6024 identity check fails, the connection is aborted. Enabled by default.
6025
6026 =item B<CACert> I<File>
6027
6028 File that holds one or more SSL certificates. If you want to use TLS/SSL you
6029 may possibly need this option. What CA certificates are checked by default
6030 depends on the distribution you use and can be changed with the usual ldap
6031 client configuration mechanisms. See ldap.conf(5) for the details.
6032
6033 =item B<Timeout> I<Seconds>
6034
6035 Sets the timeout value for ldap operations, in seconds. By default, the
6036 configured B<Interval> is used to set the timeout. Use B<-1> to disable
6037 (infinite timeout).
6038
6039 =item B<Version> I<Version>
6040
6041 An integer which sets the LDAP protocol version number to use when connecting
6042 to the I<OpenLDAP> server. Defaults to B<3> for using I<LDAPv3>.
6043
6044 =back
6045
6046 =head2 Plugin C<openvpn>
6047
6048 The OpenVPN plugin reads a status file maintained by OpenVPN and gathers
6049 traffic statistics about connected clients.
6050
6051 To set up OpenVPN to write to the status file periodically, use the
6052 B<--status> option of OpenVPN.
6053
6054 So, in a nutshell you need:
6055
6056   openvpn $OTHER_OPTIONS \
6057     --status "/var/run/openvpn-status" 10
6058
6059 Available options:
6060
6061 =over 4
6062
6063 =item B<StatusFile> I<File>
6064
6065 Specifies the location of the status file.
6066
6067 =item B<ImprovedNamingSchema> B<true>|B<false>
6068
6069 When enabled, the filename of the status file will be used as plugin instance
6070 and the client's "common name" will be used as type instance. This is required
6071 when reading multiple status files. Enabling this option is recommended, but to
6072 maintain backwards compatibility this option is disabled by default.
6073
6074 =item B<CollectCompression> B<true>|B<false>
6075
6076 Sets whether or not statistics about the compression used by OpenVPN should be
6077 collected. This information is only available in I<single> mode. Enabled by
6078 default.
6079
6080 =item B<CollectIndividualUsers> B<true>|B<false>
6081
6082 Sets whether or not traffic information is collected for each connected client
6083 individually. If set to false, currently no traffic data is collected at all
6084 because aggregating this data in a save manner is tricky. Defaults to B<true>.
6085
6086 =item B<CollectUserCount> B<true>|B<false>
6087
6088 When enabled, the number of currently connected clients or users is collected.
6089 This is especially interesting when B<CollectIndividualUsers> is disabled, but
6090 can be configured independently from that option. Defaults to B<false>.
6091
6092 =back
6093
6094 =head2 Plugin C<oracle>
6095
6096 The "oracle" plugin uses the Oracle® Call Interface I<(OCI)> to connect to an
6097 Oracle® Database and lets you execute SQL statements there. It is very similar
6098 to the "dbi" plugin, because it was written around the same time. See the "dbi"
6099 plugin's documentation above for details.
6100
6101   <Plugin oracle>
6102     <Query "out_of_stock">
6103       Statement "SELECT category, COUNT(*) AS value FROM products WHERE in_stock = 0 GROUP BY category"
6104       <Result>
6105         Type "gauge"
6106         # InstancePrefix "foo"
6107         InstancesFrom "category"
6108         ValuesFrom "value"
6109       </Result>
6110     </Query>
6111     <Database "product_information">
6112       #Plugin "warehouse"
6113       ConnectID "db01"
6114       Username "oracle"
6115       Password "secret"
6116       Query "out_of_stock"
6117     </Database>
6118   </Plugin>
6119
6120 =head3 B<Query> blocks
6121
6122 The Query blocks are handled identically to the Query blocks of the "dbi"
6123 plugin. Please see its documentation above for details on how to specify
6124 queries.
6125
6126 =head3 B<Database> blocks
6127
6128 Database blocks define a connection to a database and which queries should be
6129 sent to that database. Each database needs a "name" as string argument in the
6130 starting tag of the block. This name will be used as "PluginInstance" in the
6131 values submitted to the daemon. Other than that, that name is not used.
6132
6133 =over 4
6134
6135 =item B<Plugin> I<Plugin>
6136
6137 Use I<Plugin> as the plugin name when submitting query results from
6138 this B<Database>. Defaults to C<oracle>.
6139
6140 =item B<ConnectID> I<ID>
6141
6142 Defines the "database alias" or "service name" to connect to. Usually, these
6143 names are defined in the file named C<$ORACLE_HOME/network/admin/tnsnames.ora>.
6144
6145 =item B<Host> I<Host>
6146
6147 Hostname to use when dispatching values for this database. Defaults to using
6148 the global hostname of the I<collectd> instance.
6149
6150 =item B<Username> I<Username>
6151
6152 Username used for authentication.
6153
6154 =item B<Password> I<Password>
6155
6156 Password used for authentication.
6157
6158 =item B<Query> I<QueryName>
6159
6160 Associates the query named I<QueryName> with this database connection. The
6161 query needs to be defined I<before> this statement, i.E<nbsp>e. all query
6162 blocks you want to refer to must be placed above the database block you want to
6163 refer to them from.
6164
6165 =back
6166
6167 =head2 Plugin C<ovs_events>
6168
6169 The I<ovs_events> plugin monitors the link status of I<Open vSwitch> (OVS)
6170 connected interfaces, dispatches the values to collectd and sends the
6171 notification whenever the link state change occurs. This plugin uses OVS
6172 database to get a link state change notification.
6173
6174 B<Synopsis:>
6175
6176  <Plugin "ovs_events">
6177    Port 6640
6178    Address "127.0.0.1"
6179    Socket "/var/run/openvswitch/db.sock"
6180    Interfaces "br0" "veth0"
6181    SendNotification true
6182    DispatchValues false
6183  </Plugin>
6184
6185 The plugin provides the following configuration options:
6186
6187 =over 4
6188
6189 =item B<Address> I<node>
6190
6191 The address of the OVS DB server JSON-RPC interface used by the plugin. To
6192 enable the interface, OVS DB daemon should be running with C<--remote=ptcp:>
6193 option. See L<ovsdb-server(1)> for more details. The option may be either
6194 network hostname, IPv4 numbers-and-dots notation or IPv6 hexadecimal string
6195 format. Defaults to C<localhost>.
6196
6197 =item B<Port> I<service>
6198
6199 TCP-port to connect to. Either a service name or a port number may be given.
6200 Defaults to B<6640>.
6201
6202 =item B<Socket> I<path>
6203
6204 The UNIX domain socket path of OVS DB server JSON-RPC interface used by the
6205 plugin. To enable the interface, the OVS DB daemon should be running with
6206 C<--remote=punix:> option. See L<ovsdb-server(1)> for more details. If this
6207 option is set, B<Address> and B<Port> options are ignored.
6208
6209 =item B<Interfaces> [I<ifname> ...]
6210
6211 List of interface names to be monitored by this plugin. If this option is not
6212 specified or is empty then all OVS connected interfaces on all bridges are
6213 monitored.
6214
6215 Default: empty (all interfaces on all bridges are monitored)
6216
6217 =item B<SendNotification> I<true|false>
6218
6219 If set to true, OVS link notifications (interface status and OVS DB connection
6220 terminate) are sent to collectd. Default value is true.
6221
6222 =item B<DispatchValues> I<true|false>
6223
6224 Dispatch the OVS DB interface link status value with configured plugin interval.
6225 Defaults to false. Please note, if B<SendNotification> and B<DispatchValues>
6226 options are false, no OVS information will be provided by the plugin.
6227
6228 =back
6229
6230 B<Note:> By default, the global interval setting is used within which to
6231 retrieve the OVS link status. To configure a plugin-specific interval, please
6232 use B<Interval> option of the OVS B<LoadPlugin> block settings. For milliseconds
6233 simple divide the time by 1000 for example if the desired interval is 50ms, set
6234 interval to 0.05.
6235
6236 =head2 Plugin C<ovs_stats>
6237
6238 The I<ovs_stats> plugin collects statistics of OVS connected interfaces.
6239 This plugin uses OVSDB management protocol (RFC7047) monitor mechanism to get
6240 statistics from OVSDB
6241
6242 B<Synopsis:>
6243
6244  <Plugin "ovs_stats">
6245    Port 6640
6246    Address "127.0.0.1"
6247    Socket "/var/run/openvswitch/db.sock"
6248    Bridges "br0" "br_ext"
6249  </Plugin>
6250
6251 The plugin provides the following configuration options:
6252
6253 =over 4
6254
6255 =item B<Address> I<node>
6256
6257 The address of the OVS DB server JSON-RPC interface used by the plugin. To
6258 enable the interface, OVS DB daemon should be running with C<--remote=ptcp:>
6259 option. See L<ovsdb-server(1)> for more details. The option may be either
6260 network hostname, IPv4 numbers-and-dots notation or IPv6 hexadecimal string
6261 format. Defaults to C<localhost>.
6262
6263 =item B<Port> I<service>
6264
6265 TCP-port to connect to. Either a service name or a port number may be given.
6266 Defaults to B<6640>.
6267
6268 =item B<Socket> I<path>
6269
6270 The UNIX domain socket path of OVS DB server JSON-RPC interface used by the
6271 plugin. To enable the interface, the OVS DB daemon should be running with
6272 C<--remote=punix:> option. See L<ovsdb-server(1)> for more details. If this
6273 option is set, B<Address> and B<Port> options are ignored.
6274
6275 =item B<Bridges> [I<brname> ...]
6276
6277 List of OVS bridge names to be monitored by this plugin. If this option is
6278 omitted or is empty then all OVS bridges will be monitored.
6279
6280 Default: empty (monitor all bridges)
6281
6282 =back
6283
6284 =head2 Plugin C<perl>
6285
6286 This plugin embeds a Perl-interpreter into collectd and provides an interface
6287 to collectd's plugin system. See L<collectd-perl(5)> for its documentation.
6288
6289 =head2 Plugin C<pinba>
6290
6291 The I<Pinba plugin> receives profiling information from I<Pinba>, an extension
6292 for the I<PHP> interpreter. At the end of executing a script, i.e. after a
6293 PHP-based webpage has been delivered, the extension will send a UDP packet
6294 containing timing information, peak memory usage and so on. The plugin will
6295 wait for such packets, parse them and account the provided information, which
6296 is then dispatched to the daemon once per interval.
6297
6298 Synopsis:
6299
6300  <Plugin pinba>
6301    Address "::0"
6302    Port "30002"
6303    # Overall statistics for the website.
6304    <View "www-total">
6305      Server "www.example.com"
6306    </View>
6307    # Statistics for www-a only
6308    <View "www-a">
6309      Host "www-a.example.com"
6310      Server "www.example.com"
6311    </View>
6312    # Statistics for www-b only
6313    <View "www-b">
6314      Host "www-b.example.com"
6315      Server "www.example.com"
6316    </View>
6317  </Plugin>
6318
6319 The plugin provides the following configuration options:
6320
6321 =over 4
6322
6323 =item B<Address> I<Node>
6324
6325 Configures the address used to open a listening socket. By default, plugin will
6326 bind to the I<any> address C<::0>.
6327
6328 =item B<Port> I<Service>
6329
6330 Configures the port (service) to bind to. By default the default Pinba port
6331 "30002" will be used. The option accepts service names in addition to port
6332 numbers and thus requires a I<string> argument.
6333
6334 =item E<lt>B<View> I<Name>E<gt> block
6335
6336 The packets sent by the Pinba extension include the hostname of the server, the
6337 server name (the name of the virtual host) and the script that was executed.
6338 Using B<View> blocks it is possible to separate the data into multiple groups
6339 to get more meaningful statistics. Each packet is added to all matching groups,
6340 so that a packet may be accounted for more than once.
6341
6342 =over 4
6343
6344 =item B<Host> I<Host>
6345
6346 Matches the hostname of the system the webserver / script is running on. This
6347 will contain the result of the L<gethostname(2)> system call. If not
6348 configured, all hostnames will be accepted.
6349
6350 =item B<Server> I<Server>
6351
6352 Matches the name of the I<virtual host>, i.e. the contents of the
6353 C<$_SERVER["SERVER_NAME"]> variable when within PHP. If not configured, all
6354 server names will be accepted.
6355
6356 =item B<Script> I<Script>
6357
6358 Matches the name of the I<script name>, i.e. the contents of the
6359 C<$_SERVER["SCRIPT_NAME"]> variable when within PHP. If not configured, all
6360 script names will be accepted.
6361
6362 =back
6363
6364 =back
6365
6366 =head2 Plugin C<ping>
6367
6368 The I<Ping> plugin starts a new thread which sends ICMP "ping" packets to the
6369 configured hosts periodically and measures the network latency. Whenever the
6370 C<read> function of the plugin is called, it submits the average latency, the
6371 standard deviation and the drop rate for each host.
6372
6373 Available configuration options:
6374
6375 =over 4
6376
6377 =item B<Host> I<IP-address>
6378
6379 Host to ping periodically. This option may be repeated several times to ping
6380 multiple hosts.
6381
6382 =item B<Interval> I<Seconds>
6383
6384 Sets the interval in which to send ICMP echo packets to the configured hosts.
6385 This is B<not> the interval in which metrics are read from the plugin but the
6386 interval in which the hosts are "pinged". Therefore, the setting here should be
6387 smaller than or equal to the global B<Interval> setting. Fractional times, such
6388 as "1.24" are allowed.
6389
6390 Default: B<1.0>
6391
6392 =item B<Timeout> I<Seconds>
6393
6394 Time to wait for a response from the host to which an ICMP packet had been
6395 sent. If a reply was not received after I<Seconds> seconds, the host is assumed
6396 to be down or the packet to be dropped. This setting must be smaller than the
6397 B<Interval> setting above for the plugin to work correctly. Fractional
6398 arguments are accepted.
6399
6400 Default: B<0.9>
6401
6402 =item B<TTL> I<0-255>
6403
6404 Sets the Time-To-Live of generated ICMP packets.
6405
6406 =item B<Size> I<size>
6407
6408 Sets the size of the data payload in ICMP packet to specified I<size> (it
6409 will be filled with regular ASCII pattern). If not set, default 56 byte
6410 long string is used so that the packet size of an ICMPv4 packet is exactly
6411 64 bytes, similar to the behaviour of normal ping(1) command.
6412
6413 =item B<SourceAddress> I<host>
6414
6415 Sets the source address to use. I<host> may either be a numerical network
6416 address or a network hostname.
6417
6418 =item B<AddressFamily> I<af>
6419
6420 Sets the address family to use. I<af> may be "any", "ipv4" or "ipv6". This
6421 option will be ignored if you set a B<SourceAddress>.
6422
6423 =item B<Device> I<name>
6424
6425 Sets the outgoing network device to be used. I<name> has to specify an
6426 interface name (e.E<nbsp>g. C<eth0>). This might not be supported by all
6427 operating systems.
6428
6429 =item B<MaxMissed> I<Packets>
6430
6431 Trigger a DNS resolve after the host has not replied to I<Packets> packets. This
6432 enables the use of dynamic DNS services (like dyndns.org) with the ping plugin.
6433
6434 Default: B<-1> (disabled)
6435
6436 =back
6437
6438 =head2 Plugin C<postgresql>
6439
6440 The C<postgresql> plugin queries statistics from PostgreSQL databases. It
6441 keeps a persistent connection to all configured databases and tries to
6442 reconnect if the connection has been interrupted. A database is configured by
6443 specifying a B<Database> block as described below. The default statistics are
6444 collected from PostgreSQL's B<statistics collector> which thus has to be
6445 enabled for this plugin to work correctly. This should usually be the case by
6446 default. See the section "The Statistics Collector" of the B<PostgreSQL
6447 Documentation> for details.
6448
6449 By specifying custom database queries using a B<Query> block as described
6450 below, you may collect any data that is available from some PostgreSQL
6451 database. This way, you are able to access statistics of external daemons
6452 which are available in a PostgreSQL database or use future or special
6453 statistics provided by PostgreSQL without the need to upgrade your collectd
6454 installation.
6455
6456 Starting with version 5.2, the C<postgresql> plugin supports writing data to
6457 PostgreSQL databases as well. This has been implemented in a generic way. You
6458 need to specify an SQL statement which will then be executed by collectd in
6459 order to write the data (see below for details). The benefit of that approach
6460 is that there is no fixed database layout. Rather, the layout may be optimized
6461 for the current setup.
6462
6463 The B<PostgreSQL Documentation> manual can be found at
6464 L<http://www.postgresql.org/docs/manuals/>.
6465
6466   <Plugin postgresql>
6467     <Query magic>
6468       Statement "SELECT magic FROM wizard WHERE host = $1;"
6469       Param hostname
6470       <Result>
6471         Type gauge
6472         InstancePrefix "magic"
6473         ValuesFrom magic
6474       </Result>
6475     </Query>
6476
6477     <Query rt36_tickets>
6478       Statement "SELECT COUNT(type) AS count, type \
6479                         FROM (SELECT CASE \
6480                                      WHEN resolved = 'epoch' THEN 'open' \
6481                                      ELSE 'resolved' END AS type \
6482                                      FROM tickets) type \
6483                         GROUP BY type;"
6484       <Result>
6485         Type counter
6486         InstancePrefix "rt36_tickets"
6487         InstancesFrom "type"
6488         ValuesFrom "count"
6489       </Result>
6490     </Query>
6491
6492     <Writer sqlstore>
6493       Statement "SELECT collectd_insert($1, $2, $3, $4, $5, $6, $7, $8, $9);"
6494       StoreRates true
6495     </Writer>
6496
6497     <Database foo>
6498       Plugin "kingdom"
6499       Host "hostname"
6500       Port "5432"
6501       User "username"
6502       Password "secret"
6503       SSLMode "prefer"
6504       KRBSrvName "kerberos_service_name"
6505       Query magic
6506     </Database>
6507
6508     <Database bar>
6509       Interval 300
6510       Service "service_name"
6511       Query backends # predefined
6512       Query rt36_tickets
6513     </Database>
6514
6515     <Database qux>
6516       # ...
6517       Writer sqlstore
6518       CommitInterval 10
6519     </Database>
6520   </Plugin>
6521
6522 The B<Query> block defines one database query which may later be used by a
6523 database definition. It accepts a single mandatory argument which specifies
6524 the name of the query. The names of all queries have to be unique (see the
6525 B<MinVersion> and B<MaxVersion> options below for an exception to this
6526 rule).
6527
6528 In each B<Query> block, there is one or more B<Result> blocks. Multiple
6529 B<Result> blocks may be used to extract multiple values from a single query.
6530
6531 The following configuration options are available to define the query:
6532
6533 =over 4
6534
6535 =item B<Statement> I<sql query statement>
6536
6537 Specify the I<sql query statement> which the plugin should execute. The string
6538 may contain the tokens B<$1>, B<$2>, etc. which are used to reference the
6539 first, second, etc. parameter. The value of the parameters is specified by the
6540 B<Param> configuration option - see below for details. To include a literal
6541 B<$> character followed by a number, surround it with single quotes (B<'>).
6542
6543 Any SQL command which may return data (such as C<SELECT> or C<SHOW>) is
6544 allowed. Note, however, that only a single command may be used. Semicolons are
6545 allowed as long as a single non-empty command has been specified only.
6546
6547 The returned lines will be handled separately one after another.
6548
6549 =item B<Param> I<hostname>|I<database>|I<instance>|I<username>|I<interval>
6550
6551 Specify the parameters which should be passed to the SQL query. The parameters
6552 are referred to in the SQL query as B<$1>, B<$2>, etc. in the same order as
6553 they appear in the configuration file. The value of the parameter is
6554 determined depending on the value of the B<Param> option as follows:
6555
6556 =over 4
6557
6558 =item I<hostname>
6559
6560 The configured hostname of the database connection. If a UNIX domain socket is
6561 used, the parameter expands to "localhost".
6562
6563 =item I<database>
6564
6565 The name of the database of the current connection.
6566
6567 =item I<instance>
6568
6569 The name of the database plugin instance. See the B<Instance> option of the
6570 database specification below for details.
6571
6572 =item I<username>
6573
6574 The username used to connect to the database.
6575
6576 =item I<interval>
6577
6578 The interval with which this database is queried (as specified by the database
6579 specific or global B<Interval> options).
6580
6581 =back
6582
6583 Please note that parameters are only supported by PostgreSQL's protocol
6584 version 3 and above which was introduced in version 7.4 of PostgreSQL.
6585
6586 =item B<PluginInstanceFrom> I<column>
6587
6588 Specify how to create the "PluginInstance" for reporting this query results.
6589 Only one column is supported. You may concatenate fields and string values in
6590 the query statement to get the required results.
6591
6592 =item B<MinVersion> I<version>
6593
6594 =item B<MaxVersion> I<version>
6595
6596 Specify the minimum or maximum version of PostgreSQL that this query should be
6597 used with. Some statistics might only be available with certain versions of
6598 PostgreSQL. This allows you to specify multiple queries with the same name but
6599 which apply to different versions, thus allowing you to use the same
6600 configuration in a heterogeneous environment.
6601
6602 The I<version> has to be specified as the concatenation of the major, minor
6603 and patch-level versions, each represented as two-decimal-digit numbers. For
6604 example, version 8.2.3 will become 80203.
6605
6606 =back
6607
6608 The B<Result> block defines how to handle the values returned from the query.
6609 It defines which column holds which value and how to dispatch that value to
6610 the daemon.
6611
6612 =over 4
6613
6614 =item B<Type> I<type>
6615
6616 The I<type> name to be used when dispatching the values. The type describes
6617 how to handle the data and where to store it. See L<types.db(5)> for more
6618 details on types and their configuration. The number and type of values (as
6619 selected by the B<ValuesFrom> option) has to match the type of the given name.
6620
6621 This option is mandatory.
6622
6623 =item B<InstancePrefix> I<prefix>
6624
6625 =item B<InstancesFrom> I<column0> [I<column1> ...]
6626
6627 Specify how to create the "TypeInstance" for each data set (i.E<nbsp>e. line).
6628 B<InstancePrefix> defines a static prefix that will be prepended to all type
6629 instances. B<InstancesFrom> defines the column names whose values will be used
6630 to create the type instance. Multiple values will be joined together using the
6631 hyphen (C<->) as separation character.
6632
6633 The plugin itself does not check whether or not all built instances are
6634 different. It is your responsibility to assure that each is unique.
6635
6636 Both options are optional. If none is specified, the type instance will be
6637 empty.
6638
6639 =item B<ValuesFrom> I<column0> [I<column1> ...]
6640
6641 Names the columns whose content is used as the actual data for the data sets
6642 that are dispatched to the daemon. How many such columns you need is
6643 determined by the B<Type> setting as explained above. If you specify too many
6644 or not enough columns, the plugin will complain about that and no data will be
6645 submitted to the daemon.
6646
6647 The actual data type, as seen by PostgreSQL, is not that important as long as
6648 it represents numbers. The plugin will automatically cast the values to the
6649 right type if it know how to do that. For that, it uses the L<strtoll(3)> and
6650 L<strtod(3)> functions, so anything supported by those functions is supported
6651 by the plugin as well.
6652
6653 This option is required inside a B<Result> block and may be specified multiple
6654 times. If multiple B<ValuesFrom> options are specified, the columns are read
6655 in the given order.
6656
6657 =back
6658
6659 The following predefined queries are available (the definitions can be found
6660 in the F<postgresql_default.conf> file which, by default, is available at
6661 C<I<prefix>/share/collectd/>):
6662
6663 =over 4
6664
6665 =item B<backends>
6666
6667 This query collects the number of backends, i.E<nbsp>e. the number of
6668 connected clients.
6669
6670 =item B<transactions>
6671
6672 This query collects the numbers of committed and rolled-back transactions of
6673 the user tables.
6674
6675 =item B<queries>
6676
6677 This query collects the numbers of various table modifications (i.E<nbsp>e.
6678 insertions, updates, deletions) of the user tables.
6679
6680 =item B<query_plans>
6681
6682 This query collects the numbers of various table scans and returned tuples of
6683 the user tables.
6684
6685 =item B<table_states>
6686
6687 This query collects the numbers of live and dead rows in the user tables.
6688
6689 =item B<disk_io>
6690
6691 This query collects disk block access counts for user tables.
6692
6693 =item B<disk_usage>
6694
6695 This query collects the on-disk size of the database in bytes.
6696
6697 =back
6698
6699 In addition, the following detailed queries are available by default. Please
6700 note that each of those queries collects information B<by table>, thus,
6701 potentially producing B<a lot> of data. For details see the description of the
6702 non-by_table queries above.
6703
6704 =over 4
6705
6706 =item B<queries_by_table>
6707
6708 =item B<query_plans_by_table>
6709
6710 =item B<table_states_by_table>
6711
6712 =item B<disk_io_by_table>
6713
6714 =back
6715
6716 The B<Writer> block defines a PostgreSQL writer backend. It accepts a single
6717 mandatory argument specifying the name of the writer. This will then be used
6718 in the B<Database> specification in order to activate the writer instance. The
6719 names of all writers have to be unique. The following options may be
6720 specified:
6721
6722 =over 4
6723
6724 =item B<Statement> I<sql statement>
6725
6726 This mandatory option specifies the SQL statement that will be executed for
6727 each submitted value. A single SQL statement is allowed only. Anything after
6728 the first semicolon will be ignored.
6729
6730 Nine parameters will be passed to the statement and should be specified as
6731 tokens B<$1>, B<$2>, through B<$9> in the statement string. The following
6732 values are made available through those parameters:
6733
6734 =over 4
6735
6736 =item B<$1>
6737
6738 The timestamp of the queried value as an RFC 3339-formatted local time.
6739
6740 =item B<$2>
6741
6742 The hostname of the queried value.
6743
6744 =item B<$3>
6745
6746 The plugin name of the queried value.
6747
6748 =item B<$4>
6749
6750 The plugin instance of the queried value. This value may be B<NULL> if there
6751 is no plugin instance.
6752
6753 =item B<$5>
6754
6755 The type of the queried value (cf. L<types.db(5)>).
6756
6757 =item B<$6>
6758
6759 The type instance of the queried value. This value may be B<NULL> if there is
6760 no type instance.
6761
6762 =item B<$7>
6763
6764 An array of names for the submitted values (i.E<nbsp>e., the name of the data
6765 sources of the submitted value-list).
6766
6767 =item B<$8>
6768
6769 An array of types for the submitted values (i.E<nbsp>e., the type of the data
6770 sources of the submitted value-list; C<counter>, C<gauge>, ...). Note, that if
6771 B<StoreRates> is enabled (which is the default, see below), all types will be
6772 C<gauge>.
6773
6774 =item B<$9>
6775
6776 An array of the submitted values. The dimensions of the value name and value
6777 arrays match.
6778
6779 =back
6780
6781 In general, it is advisable to create and call a custom function in the
6782 PostgreSQL database for this purpose. Any procedural language supported by
6783 PostgreSQL will do (see chapter "Server Programming" in the PostgreSQL manual
6784 for details).
6785
6786 =item B<StoreRates> B<false>|B<true>
6787
6788 If set to B<true> (the default), convert counter values to rates. If set to
6789 B<false> counter values are stored as is, i.E<nbsp>e. as an increasing integer
6790 number.
6791
6792 =back
6793
6794 The B<Database> block defines one PostgreSQL database for which to collect
6795 statistics. It accepts a single mandatory argument which specifies the
6796 database name. None of the other options are required. PostgreSQL will use
6797 default values as documented in the section "CONNECTING TO A DATABASE" in the
6798 L<psql(1)> manpage. However, be aware that those defaults may be influenced by
6799 the user collectd is run as and special environment variables. See the manpage
6800 for details.
6801
6802 =over 4
6803
6804 =item B<Interval> I<seconds>
6805
6806 Specify the interval with which the database should be queried. The default is
6807 to use the global B<Interval> setting.
6808
6809 =item B<CommitInterval> I<seconds>
6810
6811 This option may be used for database connections which have "writers" assigned
6812 (see above). If specified, it causes a writer to put several updates into a
6813 single transaction. This transaction will last for the specified amount of
6814 time. By default, each update will be executed in a separate transaction. Each
6815 transaction generates a fair amount of overhead which can, thus, be reduced by
6816 activating this option. The draw-back is, that data covering the specified
6817 amount of time will be lost, for example, if a single statement within the
6818 transaction fails or if the database server crashes.
6819
6820 =item B<Plugin> I<Plugin>
6821
6822 Use I<Plugin> as the plugin name when submitting query results from
6823 this B<Database>. Defaults to C<postgresql>.
6824
6825 =item B<Instance> I<name>
6826
6827 Specify the plugin instance name that should be used instead of the database
6828 name (which is the default, if this option has not been specified). This
6829 allows one to query multiple databases of the same name on the same host (e.g.
6830 when running multiple database server versions in parallel).
6831 The plugin instance name can also be set from the query result using
6832 the B<PluginInstanceFrom> option in B<Query> block.
6833
6834 =item B<Host> I<hostname>
6835
6836 Specify the hostname or IP of the PostgreSQL server to connect to. If the
6837 value begins with a slash, it is interpreted as the directory name in which to
6838 look for the UNIX domain socket.
6839
6840 This option is also used to determine the hostname that is associated with a
6841 collected data set. If it has been omitted or either begins with with a slash
6842 or equals B<localhost> it will be replaced with the global hostname definition
6843 of collectd. Any other value will be passed literally to collectd when
6844 dispatching values. Also see the global B<Hostname> and B<FQDNLookup> options.
6845
6846 =item B<Port> I<port>
6847
6848 Specify the TCP port or the local UNIX domain socket file extension of the
6849 server.
6850
6851 =item B<User> I<username>
6852
6853 Specify the username to be used when connecting to the server.
6854
6855 =item B<Password> I<password>
6856
6857 Specify the password to be used when connecting to the server.
6858
6859 =item B<ExpireDelay> I<delay>
6860
6861 Skip expired values in query output.
6862
6863 =item B<SSLMode> I<disable>|I<allow>|I<prefer>|I<require>
6864
6865 Specify whether to use an SSL connection when contacting the server. The
6866 following modes are supported:
6867
6868 =over 4
6869
6870 =item I<disable>
6871
6872 Do not use SSL at all.
6873
6874 =item I<allow>
6875
6876 First, try to connect without using SSL. If that fails, try using SSL.
6877
6878 =item I<prefer> (default)
6879
6880 First, try to connect using SSL. If that fails, try without using SSL.
6881
6882 =item I<require>
6883
6884 Use SSL only.
6885
6886 =back
6887
6888 =item B<Instance> I<name>
6889
6890 Specify the plugin instance name that should be used instead of the database
6891 name (which is the default, if this option has not been specified). This
6892 allows one to query multiple databases of the same name on the same host (e.g.
6893 when running multiple database server versions in parallel).
6894
6895 =item B<KRBSrvName> I<kerberos_service_name>
6896
6897 Specify the Kerberos service name to use when authenticating with Kerberos 5
6898 or GSSAPI. See the sections "Kerberos authentication" and "GSSAPI" of the
6899 B<PostgreSQL Documentation> for details.
6900
6901 =item B<Service> I<service_name>
6902
6903 Specify the PostgreSQL service name to use for additional parameters. That
6904 service has to be defined in F<pg_service.conf> and holds additional
6905 connection parameters. See the section "The Connection Service File" in the
6906 B<PostgreSQL Documentation> for details.
6907
6908 =item B<Query> I<query>
6909
6910 Specifies a I<query> which should be executed in the context of the database
6911 connection. This may be any of the predefined or user-defined queries. If no
6912 such option is given, it defaults to "backends", "transactions", "queries",
6913 "query_plans", "table_states", "disk_io" and "disk_usage" (unless a B<Writer>
6914 has been specified). Else, the specified queries are used only.
6915
6916 =item B<Writer> I<writer>
6917
6918 Assigns the specified I<writer> backend to the database connection. This
6919 causes all collected data to be send to the database using the settings
6920 defined in the writer configuration (see the section "FILTER CONFIGURATION"
6921 below for details on how to selectively send data to certain plugins).
6922
6923 Each writer will register a flush callback which may be used when having long
6924 transactions enabled (see the B<CommitInterval> option above). When issuing
6925 the B<FLUSH> command (see L<collectd-unixsock(5)> for details) the current
6926 transaction will be committed right away. Two different kinds of flush
6927 callbacks are available with the C<postgresql> plugin:
6928
6929 =over 4
6930
6931 =item B<postgresql>
6932
6933 Flush all writer backends.
6934
6935 =item B<postgresql->I<database>
6936
6937 Flush all writers of the specified I<database> only.
6938
6939 =back
6940
6941 =back
6942
6943 =head2 Plugin C<powerdns>
6944
6945 The C<powerdns> plugin queries statistics from an authoritative PowerDNS
6946 nameserver and/or a PowerDNS recursor. Since both offer a wide variety of
6947 values, many of which are probably meaningless to most users, but may be useful
6948 for some. So you may chose which values to collect, but if you don't, some
6949 reasonable defaults will be collected.
6950
6951   <Plugin "powerdns">
6952     <Server "server_name">
6953       Collect "latency"
6954       Collect "udp-answers" "udp-queries"
6955       Socket "/var/run/pdns.controlsocket"
6956     </Server>
6957     <Recursor "recursor_name">
6958       Collect "questions"
6959       Collect "cache-hits" "cache-misses"
6960       Socket "/var/run/pdns_recursor.controlsocket"
6961     </Recursor>
6962     LocalSocket "/opt/collectd/var/run/collectd-powerdns"
6963   </Plugin>
6964
6965 =over 4
6966
6967 =item B<Server> and B<Recursor> block
6968
6969 The B<Server> block defines one authoritative server to query, the B<Recursor>
6970 does the same for an recursing server. The possible options in both blocks are
6971 the same, though. The argument defines a name for the serverE<nbsp>/ recursor
6972 and is required.
6973
6974 =over 4
6975
6976 =item B<Collect> I<Field>
6977
6978 Using the B<Collect> statement you can select which values to collect. Here,
6979 you specify the name of the values as used by the PowerDNS servers, e.E<nbsp>g.
6980 C<dlg-only-drops>, C<answers10-100>.
6981
6982 The method of getting the values differs for B<Server> and B<Recursor> blocks:
6983 When querying the server a C<SHOW *> command is issued in any case, because
6984 that's the only way of getting multiple values out of the server at once.
6985 collectd then picks out the values you have selected. When querying the
6986 recursor, a command is generated to query exactly these values. So if you
6987 specify invalid fields when querying the recursor, a syntax error may be
6988 returned by the daemon and collectd may not collect any values at all.
6989
6990 If no B<Collect> statement is given, the following B<Server> values will be
6991 collected:
6992
6993 =over 4
6994
6995 =item latency
6996
6997 =item packetcache-hit
6998
6999 =item packetcache-miss
7000
7001 =item packetcache-size
7002
7003 =item query-cache-hit
7004
7005 =item query-cache-miss
7006
7007 =item recursing-answers
7008
7009 =item recursing-questions
7010
7011 =item tcp-answers
7012
7013 =item tcp-queries
7014
7015 =item udp-answers
7016
7017 =item udp-queries
7018
7019 =back
7020
7021 The following B<Recursor> values will be collected by default:
7022
7023 =over 4
7024
7025 =item noerror-answers
7026
7027 =item nxdomain-answers
7028
7029 =item servfail-answers
7030
7031 =item sys-msec
7032
7033 =item user-msec
7034
7035 =item qa-latency
7036
7037 =item cache-entries
7038
7039 =item cache-hits
7040
7041 =item cache-misses
7042
7043 =item questions
7044
7045 =back
7046
7047 Please note that up to that point collectd doesn't know what values are
7048 available on the server and values that are added do not need a change of the
7049 mechanism so far. However, the values must be mapped to collectd's naming
7050 scheme, which is done using a lookup table that lists all known values. If
7051 values are added in the future and collectd does not know about them, you will
7052 get an error much like this:
7053
7054   powerdns plugin: submit: Not found in lookup table: foobar = 42
7055
7056 In this case please file a bug report with the collectd team.
7057
7058 =item B<Socket> I<Path>
7059
7060 Configures the path to the UNIX domain socket to be used when connecting to the
7061 daemon. By default C<${localstatedir}/run/pdns.controlsocket> will be used for
7062 an authoritative server and C<${localstatedir}/run/pdns_recursor.controlsocket>
7063 will be used for the recursor.
7064
7065 =back
7066
7067 =item B<LocalSocket> I<Path>
7068
7069 Querying the recursor is done using UDP. When using UDP over UNIX domain
7070 sockets, the client socket needs a name in the file system, too. You can set
7071 this local name to I<Path> using the B<LocalSocket> option. The default is
7072 C<I<prefix>/var/run/collectd-powerdns>.
7073
7074 =back
7075
7076 =head2 Plugin C<processes>
7077
7078 Collects information about processes of local system.
7079
7080 By default, with no process matches configured, only general statistics is
7081 collected: the number of processes in each state and fork rate.
7082
7083 Process matches can be configured by B<Process> and B<ProcessMatch> options.
7084 These may also be a block in which further options may be specified.
7085
7086 The statistics collected for matched processes are:
7087  - size of the resident segment size (RSS)
7088  - user- and system-time used
7089  - number of processes
7090  - number of threads
7091  - number of open files (under Linux)
7092  - number of memory mapped files (under Linux)
7093  - io data (where available)
7094  - context switches (under Linux)
7095  - minor and major pagefaults
7096  - Delay Accounting information (Linux only, requires libmnl)
7097
7098 B<Synopsis:>
7099
7100  <Plugin processes>
7101    CollectFileDescriptor  true
7102    CollectContextSwitch   true
7103    CollectDelayAccounting false
7104    Process "name"
7105    ProcessMatch "name" "regex"
7106    <Process "collectd">
7107      CollectFileDescriptor  false
7108      CollectContextSwitch   false
7109      CollectDelayAccounting true
7110    </Process>
7111    <ProcessMatch "name" "regex">
7112      CollectFileDescriptor false
7113      CollectContextSwitch true
7114    </ProcessMatch>
7115  </Plugin>
7116
7117 =over 4
7118
7119 =item B<Process> I<Name>
7120
7121 Select more detailed statistics of processes matching this name.
7122
7123 Some platforms have a limit on the length of process names.
7124 I<Name> must stay below this limit.
7125
7126 =item B<ProcessMatch> I<name> I<regex>
7127
7128 Select more detailed statistics of processes matching the specified I<regex>
7129 (see L<regex(7)> for details). The statistics of all matching processes are
7130 summed up and dispatched to the daemon using the specified I<name> as an
7131 identifier. This allows one to "group" several processes together.
7132 I<name> must not contain slashes.
7133
7134 =item B<CollectContextSwitch> I<Boolean>
7135
7136 Collect the number of context switches for matched processes.
7137 Disabled by default.
7138
7139 =item B<CollectDelayAccounting> I<Boolean>
7140
7141 If enabled, collect Linux Delay Accounding information for matching processes.
7142 Delay Accounting provides the time processes wait for the CPU to become
7143 available, for I/O operations to finish, for pages to be swapped in and for
7144 freed pages to be reclaimed. The metrics are reported as "seconds per second"
7145 using the C<delay_rate> type, e.g. C<delay_rate-delay-cpu>.
7146 Disabled by default.
7147
7148 This option is only available on Linux, requires the C<libmnl> library and
7149 requires the C<CAP_NET_ADMIN> capability at runtime.
7150
7151 =item B<CollectFileDescriptor> I<Boolean>
7152
7153 Collect number of file descriptors of matched processes.
7154 Disabled by default.
7155
7156 =item B<CollectMemoryMaps> I<Boolean>
7157
7158 Collect the number of memory mapped files of the process.
7159 The limit for this number is configured via F</proc/sys/vm/max_map_count> in
7160 the Linux kernel.
7161
7162 =back
7163
7164 The B<CollectContextSwitch>, B<CollectDelayAccounting>,
7165 B<CollectFileDescriptor> and B<CollectMemoryMaps> options may be used inside
7166 B<Process> and B<ProcessMatch> blocks. When used there, these options affect
7167 reporting the corresponding processes only. Outside of B<Process> and
7168 B<ProcessMatch> blocks these options set the default value for subsequent
7169 matches.
7170
7171 =head2 Plugin C<protocols>
7172
7173 Collects a lot of information about various network protocols, such as I<IP>,
7174 I<TCP>, I<UDP>, etc.
7175
7176 Available configuration options:
7177
7178 =over 4
7179
7180 =item B<Value> I<Selector>
7181
7182 Selects whether or not to select a specific value. The string being matched is
7183 of the form "I<Protocol>:I<ValueName>", where I<Protocol> will be used as the
7184 plugin instance and I<ValueName> will be used as type instance. An example of
7185 the string being used would be C<Tcp:RetransSegs>.
7186
7187 You can use regular expressions to match a large number of values with just one
7188 configuration option. To select all "extended" I<TCP> values, you could use the
7189 following statement:
7190
7191   Value "/^TcpExt:/"
7192
7193 Whether only matched values are selected or all matched values are ignored
7194 depends on the B<IgnoreSelected>. By default, only matched values are selected.
7195 If no value is configured at all, all values will be selected.
7196
7197 See F</"IGNORELISTS"> for details.
7198
7199 =item B<IgnoreSelected> B<true>|B<false>
7200
7201 If set to B<true>, inverts the selection made by B<Value>, i.E<nbsp>e. all
7202 matching values will be ignored.
7203
7204 =back
7205
7206 =head2 Plugin C<python>
7207
7208 This plugin embeds a Python-interpreter into collectd and provides an interface
7209 to collectd's plugin system. See L<collectd-python(5)> for its documentation.
7210
7211 =head2 Plugin C<routeros>
7212
7213 The C<routeros> plugin connects to a device running I<RouterOS>, the
7214 Linux-based operating system for routers by I<MikroTik>. The plugin uses
7215 I<librouteros> to connect and reads information about the interfaces and
7216 wireless connections of the device. The configuration supports querying
7217 multiple routers:
7218
7219   <Plugin "routeros">
7220     <Router>
7221       Host "router0.example.com"
7222       User "collectd"
7223       Password "secr3t"
7224       CollectInterface true
7225       CollectCPULoad true
7226       CollectMemory true
7227     </Router>
7228     <Router>
7229       Host "router1.example.com"
7230       User "collectd"
7231       Password "5ecret"
7232       CollectInterface true
7233       CollectRegistrationTable true
7234       CollectDF true
7235       CollectDisk true
7236     </Router>
7237   </Plugin>
7238
7239 As you can see above, the configuration of the I<routeros> plugin consists of
7240 one or more B<E<lt>RouterE<gt>> blocks. Within each block, the following
7241 options are understood:
7242
7243 =over 4
7244
7245 =item B<Host> I<Host>
7246
7247 Hostname or IP-address of the router to connect to.
7248
7249 =item B<Port> I<Port>
7250
7251 Port name or port number used when connecting. If left unspecified, the default
7252 will be chosen by I<librouteros>, currently "8728". This option expects a
7253 string argument, even when a numeric port number is given.
7254
7255 =item B<User> I<User>
7256
7257 Use the user name I<User> to authenticate. Defaults to "admin".
7258
7259 =item B<Password> I<Password>
7260
7261 Set the password used to authenticate.
7262
7263 =item B<CollectInterface> B<true>|B<false>
7264
7265 When set to B<true>, interface statistics will be collected for all interfaces
7266 present on the device. Defaults to B<false>.
7267
7268 =item B<CollectRegistrationTable> B<true>|B<false>
7269
7270 When set to B<true>, information about wireless LAN connections will be
7271 collected. Defaults to B<false>.
7272
7273 =item B<CollectCPULoad> B<true>|B<false>
7274
7275 When set to B<true>, information about the CPU usage will be collected. The
7276 number is a dimensionless value where zero indicates no CPU usage at all.
7277 Defaults to B<false>.
7278
7279 =item B<CollectMemory> B<true>|B<false>
7280
7281 When enabled, the amount of used and free memory will be collected. How used
7282 memory is calculated is unknown, for example whether or not caches are counted
7283 as used space.
7284 Defaults to B<false>.
7285
7286 =item B<CollectDF> B<true>|B<false>
7287
7288 When enabled, the amount of used and free disk space will be collected.
7289 Defaults to B<false>.
7290
7291 =item B<CollectDisk> B<true>|B<false>
7292
7293 When enabled, the number of sectors written and bad blocks will be collected.
7294 Defaults to B<false>.
7295
7296 =back
7297
7298 =head2 Plugin C<redis>
7299
7300 The I<Redis plugin> connects to one or more Redis servers, gathers
7301 information about each server's state and executes user-defined queries.
7302 For each server there is a I<Node> block which configures the connection
7303 parameters and set of user-defined queries for this node.
7304
7305   <Plugin redis>
7306     <Node "example">
7307         Host "localhost"
7308         Port "6379"
7309         Timeout 2000
7310         ReportCommandStats false
7311         ReportCpuUsage true
7312         <Query "LLEN myqueue">
7313           #Database 0
7314           Type "queue_length"
7315           Instance "myqueue"
7316         </Query>
7317     </Node>
7318   </Plugin>
7319
7320 =over 4
7321
7322 =item B<Node> I<Nodename>
7323
7324 The B<Node> block identifies a new Redis node, that is a new Redis instance
7325 running in an specified host and port. The name for node is a canonical
7326 identifier which is used as I<plugin instance>. It is limited to
7327 128E<nbsp>characters in length.
7328
7329 When no B<Node> is configured explicitly, plugin connects to "localhost:6379".
7330
7331 =item B<Host> I<Hostname>
7332
7333 The B<Host> option is the hostname or IP-address where the Redis instance is
7334 running on.
7335
7336 =item B<Port> I<Port>
7337
7338 The B<Port> option is the TCP port on which the Redis instance accepts
7339 connections. Either a service name of a port number may be given. Please note
7340 that numerical port numbers must be given as a string, too.
7341
7342 =item B<Password> I<Password>
7343
7344 Use I<Password> to authenticate when connecting to I<Redis>.
7345
7346 =item B<Timeout> I<Milliseconds>
7347
7348 The B<Timeout> option set the socket timeout for node response. Since the Redis
7349 read function is blocking, you should keep this value as low as possible.
7350 It is expected what B<Timeout> values should be lower than B<Interval> defined
7351 globally.
7352
7353 Defaults to 2000 (2 seconds).
7354
7355 =item B<ReportCommandStats> B<false>|B<true>
7356
7357 Enables or disables reporting of statistics based on the command type, including
7358 rate of command calls and average CPU time consumed by command processing.
7359 Defaults to B<false>.
7360
7361 =item B<ReportCpuUsage> B<true>|B<false>
7362
7363 Enables or disables reporting of CPU consumption statistics.
7364 Defaults to B<true>.
7365
7366 =item B<Query> I<Querystring>
7367
7368 The B<Query> block identifies a query to execute against the redis server.
7369 There may be an arbitrary number of queries to execute. Each query should
7370 return single string or integer.
7371
7372 =item B<Type> I<Collectd type>
7373
7374 Within a query definition, a valid I<collectd type> to use as when submitting
7375 the result of the query. When not supplied, will default to B<gauge>.
7376
7377 Currently only types with one datasource are supported.
7378 See L<types.db(5)> for more details on types and their configuration.
7379
7380 =item B<Instance> I<Type instance>
7381
7382 Within a query definition, an optional type instance to use when submitting
7383 the result of the query. When not supplied will default to the escaped
7384 command, up to 128 chars.
7385
7386 =item B<Database> I<Index>
7387
7388 This index selects the Redis logical database to use for query. Defaults
7389 to C<0>.
7390
7391 =back
7392
7393 =head2 Plugin C<rrdcached>
7394
7395 The C<rrdcached> plugin uses the RRDtool accelerator daemon, L<rrdcached(1)>,
7396 to store values to RRD files in an efficient manner. The combination of the
7397 C<rrdcached> B<plugin> and the C<rrdcached> B<daemon> is very similar to the
7398 way the C<rrdtool> plugin works (see below). The added abstraction layer
7399 provides a number of benefits, though: Because the cache is not within
7400 C<collectd> anymore, it does not need to be flushed when C<collectd> is to be
7401 restarted. This results in much shorter (if any) gaps in graphs, especially
7402 under heavy load. Also, the C<rrdtool> command line utility is aware of the
7403 daemon so that it can flush values to disk automatically when needed. This
7404 allows one to integrate automated flushing of values into graphing solutions
7405 much more easily.
7406
7407 There are disadvantages, though: The daemon may reside on a different host, so
7408 it may not be possible for C<collectd> to create the appropriate RRD files
7409 anymore. And even if C<rrdcached> runs on the same host, it may run in a
7410 different base directory, so relative paths may do weird stuff if you're not
7411 careful.
7412
7413 So the B<recommended configuration> is to let C<collectd> and C<rrdcached> run
7414 on the same host, communicating via a UNIX domain socket. The B<DataDir>
7415 setting should be set to an absolute path, so that a changed base directory
7416 does not result in RRD files being createdE<nbsp>/ expected in the wrong place.
7417
7418 =over 4
7419
7420 =item B<DaemonAddress> I<Address>
7421
7422 Address of the daemon as understood by the C<rrdc_connect> function of the RRD
7423 library. See L<rrdcached(1)> for details. Example:
7424
7425   <Plugin "rrdcached">
7426     DaemonAddress "unix:/var/run/rrdcached.sock"
7427   </Plugin>
7428
7429 =item B<DataDir> I<Directory>
7430
7431 Set the base directory in which the RRD files reside. If this is a relative
7432 path, it is relative to the working base directory of the C<rrdcached> daemon!
7433 Use of an absolute path is recommended.
7434
7435 =item B<CreateFiles> B<true>|B<false>
7436
7437 Enables or disables the creation of RRD files. If the daemon is not running
7438 locally, or B<DataDir> is set to a relative path, this will not work as
7439 expected. Default is B<true>.
7440
7441 =item B<CreateFilesAsync> B<false>|B<true>
7442
7443 When enabled, new RRD files are enabled asynchronously, using a separate thread
7444 that runs in the background. This prevents writes to block, which is a problem
7445 especially when many hundreds of files need to be created at once. However,
7446 since the purpose of creating the files asynchronously is I<not> to block until
7447 the file is available, values before the file is available will be discarded.
7448 When disabled (the default) files are created synchronously, blocking for a
7449 short while, while the file is being written.
7450
7451 =item B<StepSize> I<Seconds>
7452
7453 B<Force> the stepsize of newly created RRD-files. Ideally (and per default)
7454 this setting is unset and the stepsize is set to the interval in which the data
7455 is collected. Do not use this option unless you absolutely have to for some
7456 reason. Setting this option may cause problems with the C<snmp plugin>, the
7457 C<exec plugin> or when the daemon is set up to receive data from other hosts.
7458
7459 =item B<HeartBeat> I<Seconds>
7460
7461 B<Force> the heartbeat of newly created RRD-files. This setting should be unset
7462 in which case the heartbeat is set to twice the B<StepSize> which should equal
7463 the interval in which data is collected. Do not set this option unless you have
7464 a very good reason to do so.
7465
7466 =item B<RRARows> I<NumRows>
7467
7468 The C<rrdtool plugin> calculates the number of PDPs per CDP based on the
7469 B<StepSize>, this setting and a timespan. This plugin creates RRD-files with
7470 three times five RRAs, i. e. five RRAs with the CFs B<MIN>, B<AVERAGE>, and
7471 B<MAX>. The five RRAs are optimized for graphs covering one hour, one day, one
7472 week, one month, and one year.
7473
7474 So for each timespan, it calculates how many PDPs need to be consolidated into
7475 one CDP by calculating:
7476   number of PDPs = timespan / (stepsize * rrarows)
7477
7478 Bottom line is, set this no smaller than the width of you graphs in pixels. The
7479 default is 1200.
7480
7481 =item B<RRATimespan> I<Seconds>
7482
7483 Adds an RRA-timespan, given in seconds. Use this option multiple times to have
7484 more then one RRA. If this option is never used, the built-in default of (3600,
7485 86400, 604800, 2678400, 31622400) is used.
7486
7487 For more information on how RRA-sizes are calculated see B<RRARows> above.
7488
7489 =item B<XFF> I<Factor>
7490
7491 Set the "XFiles Factor". The default is 0.1. If unsure, don't set this option.
7492 I<Factor> must be in the range C<[0.0-1.0)>, i.e. between zero (inclusive) and
7493 one (exclusive).
7494
7495 =item B<CollectStatistics> B<false>|B<true>
7496
7497 When set to B<true>, various statistics about the I<rrdcached> daemon will be
7498 collected, with "rrdcached" as the I<plugin name>. Defaults to B<false>.
7499
7500 Statistics are read via I<rrdcached>s socket using the STATS command.
7501 See L<rrdcached(1)> for details.
7502
7503 =back
7504
7505 =head2 Plugin C<rrdtool>
7506
7507 You can use the settings B<StepSize>, B<HeartBeat>, B<RRARows>, and B<XFF> to
7508 fine-tune your RRD-files. Please read L<rrdcreate(1)> if you encounter problems
7509 using these settings. If you don't want to dive into the depths of RRDtool, you
7510 can safely ignore these settings.
7511
7512 =over 4
7513
7514 =item B<DataDir> I<Directory>
7515
7516 Set the directory to store RRD files under. By default RRD files are generated
7517 beneath the daemon's working directory, i.e. the B<BaseDir>.
7518
7519 =item B<CreateFilesAsync> B<false>|B<true>
7520
7521 When enabled, new RRD files are enabled asynchronously, using a separate thread
7522 that runs in the background. This prevents writes to block, which is a problem
7523 especially when many hundreds of files need to be created at once. However,
7524 since the purpose of creating the files asynchronously is I<not> to block until
7525 the file is available, values before the file is available will be discarded.
7526 When disabled (the default) files are created synchronously, blocking for a
7527 short while, while the file is being written.
7528
7529 =item B<StepSize> I<Seconds>
7530
7531 B<Force> the stepsize of newly created RRD-files. Ideally (and per default)
7532 this setting is unset and the stepsize is set to the interval in which the data
7533 is collected. Do not use this option unless you absolutely have to for some
7534 reason. Setting this option may cause problems with the C<snmp plugin>, the
7535 C<exec plugin> or when the daemon is set up to receive data from other hosts.
7536
7537 =item B<HeartBeat> I<Seconds>
7538
7539 B<Force> the heartbeat of newly created RRD-files. This setting should be unset
7540 in which case the heartbeat is set to twice the B<StepSize> which should equal
7541 the interval in which data is collected. Do not set this option unless you have
7542 a very good reason to do so.
7543
7544 =item B<RRARows> I<NumRows>
7545
7546 The C<rrdtool plugin> calculates the number of PDPs per CDP based on the
7547 B<StepSize>, this setting and a timespan. This plugin creates RRD-files with
7548 three times five RRAs, i.e. five RRAs with the CFs B<MIN>, B<AVERAGE>, and
7549 B<MAX>. The five RRAs are optimized for graphs covering one hour, one day, one
7550 week, one month, and one year.
7551
7552 So for each timespan, it calculates how many PDPs need to be consolidated into
7553 one CDP by calculating:
7554   number of PDPs = timespan / (stepsize * rrarows)
7555
7556 Bottom line is, set this no smaller than the width of you graphs in pixels. The
7557 default is 1200.
7558
7559 =item B<RRATimespan> I<Seconds>
7560
7561 Adds an RRA-timespan, given in seconds. Use this option multiple times to have
7562 more then one RRA. If this option is never used, the built-in default of (3600,
7563 86400, 604800, 2678400, 31622400) is used.
7564
7565 For more information on how RRA-sizes are calculated see B<RRARows> above.
7566
7567 =item B<XFF> I<Factor>
7568
7569 Set the "XFiles Factor". The default is 0.1. If unsure, don't set this option.
7570 I<Factor> must be in the range C<[0.0-1.0)>, i.e. between zero (inclusive) and
7571 one (exclusive).
7572
7573 =item B<CacheFlush> I<Seconds>
7574
7575 When the C<rrdtool> plugin uses a cache (by setting B<CacheTimeout>, see below)
7576 it writes all values for a certain RRD-file if the oldest value is older than
7577 (or equal to) the number of seconds specified by B<CacheTimeout>.
7578 That check happens on new values arriwal. If some RRD-file is not updated
7579 anymore for some reason (the computer was shut down, the network is broken,
7580 etc.) some values may still be in the cache. If B<CacheFlush> is set, then
7581 every I<Seconds> seconds the entire cache is searched for entries older than
7582 B<CacheTimeout> + B<RandomTimeout> seconds. The entries found are written to
7583 disk. Since scanning the entire cache is kind of expensive and does nothing
7584 under normal circumstances, this value should not be too small. 900 seconds
7585 might be a good value, though setting this to 7200 seconds doesn't normally
7586 do much harm either.
7587
7588 Defaults to 10x B<CacheTimeout>.
7589 B<CacheFlush> must be larger than or equal to B<CacheTimeout>, otherwise the
7590 above default is used.
7591
7592 =item B<CacheTimeout> I<Seconds>
7593
7594 If this option is set to a value greater than zero, the C<rrdtool plugin> will
7595 save values in a cache, as described above. Writing multiple values at once
7596 reduces IO-operations and thus lessens the load produced by updating the files.
7597 The trade off is that the graphs kind of "drag behind" and that more memory is
7598 used.
7599
7600 =item B<WritesPerSecond> I<Updates>
7601
7602 When collecting many statistics with collectd and the C<rrdtool> plugin, you
7603 will run serious performance problems. The B<CacheFlush> setting and the
7604 internal update queue assert that collectd continues to work just fine even
7605 under heavy load, but the system may become very unresponsive and slow. This is
7606 a problem especially if you create graphs from the RRD files on the same
7607 machine, for example using the C<graph.cgi> script included in the
7608 C<contrib/collection3/> directory.
7609
7610 This setting is designed for very large setups. Setting this option to a value
7611 between 25 and 80 updates per second, depending on your hardware, will leave
7612 the server responsive enough to draw graphs even while all the cached values
7613 are written to disk. Flushed values, i.E<nbsp>e. values that are forced to disk
7614 by the B<FLUSH> command, are B<not> effected by this limit. They are still
7615 written as fast as possible, so that web frontends have up to date data when
7616 generating graphs.
7617
7618 For example: If you have 100,000 RRD files and set B<WritesPerSecond> to 30
7619 updates per second, writing all values to disk will take approximately
7620 56E<nbsp>minutes. Together with the flushing ability that's integrated into
7621 "collection3" you'll end up with a responsive and fast system, up to date
7622 graphs and basically a "backup" of your values every hour.
7623
7624 =item B<RandomTimeout> I<Seconds>
7625
7626 When set, the actual timeout for each value is chosen randomly between
7627 I<CacheTimeout>-I<RandomTimeout> and I<CacheTimeout>+I<RandomTimeout>. The
7628 intention is to avoid high load situations that appear when many values timeout
7629 at the same time. This is especially a problem shortly after the daemon starts,
7630 because all values were added to the internal cache at roughly the same time.
7631
7632 =back
7633
7634 =head2 Plugin C<sensors>
7635
7636 The I<Sensors plugin> uses B<lm_sensors> to retrieve sensor-values. This means
7637 that all the needed modules have to be loaded and lm_sensors has to be
7638 configured (most likely by editing F</etc/sensors.conf>. Read
7639 L<sensors.conf(5)> for details.
7640
7641 The B<lm_sensors> homepage can be found at
7642 L<http://secure.netroedge.com/~lm78/>.
7643
7644 =over 4
7645
7646 =item B<SensorConfigFile> I<File>
7647
7648 Read the I<lm_sensors> configuration from I<File>. When unset (recommended),
7649 the library's default will be used.
7650
7651 =item B<Sensor> I<chip-bus-address/type-feature>
7652
7653 Selects the name of the sensor which you want to collect or ignore, depending
7654 on the B<IgnoreSelected> below. For example, the option "B<Sensor>
7655 I<it8712-isa-0290/voltage-in1>" will cause collectd to gather data for the
7656 voltage sensor I<in1> of the I<it8712> on the isa bus at the address 0290.
7657
7658 See F</"IGNORELISTS"> for details.
7659
7660 =item B<IgnoreSelected> I<true>|I<false>
7661
7662 If no configuration if given, the B<sensors>-plugin will collect data from all
7663 sensors. This may not be practical, especially for uninteresting sensors.
7664 Thus, you can use the B<Sensor>-option to pick the sensors you're interested
7665 in. Sometimes, however, it's easier/preferred to collect all sensors I<except> a
7666 few ones. This option enables you to do that: By setting B<IgnoreSelected> to
7667 I<true> the effect of B<Sensor> is inverted: All selected sensors are ignored
7668 and all other sensors are collected.
7669
7670 =item B<UseLabels> I<true>|I<false>
7671
7672 Configures how sensor readings are reported. When set to I<true>, sensor
7673 readings are reported using their descriptive label (e.g. "VCore"). When set to
7674 I<false> (the default) the sensor name is used ("in0").
7675
7676 =back
7677
7678 =head2 Plugin C<sigrok>
7679
7680 The I<sigrok plugin> uses I<libsigrok> to retrieve measurements from any device
7681 supported by the L<sigrok|http://sigrok.org/> project.
7682
7683 B<Synopsis>
7684
7685  <Plugin sigrok>
7686    LogLevel 3
7687    <Device "AC Voltage">
7688       Driver "fluke-dmm"
7689       MinimumInterval 10
7690       Conn "/dev/ttyUSB2"
7691    </Device>
7692    <Device "Sound Level">
7693       Driver "cem-dt-885x"
7694       Conn "/dev/ttyUSB1"
7695    </Device>
7696  </Plugin>
7697
7698 =over 4
7699
7700 =item B<LogLevel> B<0-5>
7701
7702 The I<sigrok> logging level to pass on to the I<collectd> log, as a number
7703 between B<0> and B<5> (inclusive). These levels correspond to C<None>,
7704 C<Errors>, C<Warnings>, C<Informational>, C<Debug >and C<Spew>, respectively.
7705 The default is B<2> (C<Warnings>). The I<sigrok> log messages, regardless of
7706 their level, are always submitted to I<collectd> at its INFO log level.
7707
7708 =item E<lt>B<Device> I<Name>E<gt>
7709
7710 A sigrok-supported device, uniquely identified by this section's options. The
7711 I<Name> is passed to I<collectd> as the I<plugin instance>.
7712
7713 =item B<Driver> I<DriverName>
7714
7715 The sigrok driver to use for this device.
7716
7717 =item B<Conn> I<ConnectionSpec>
7718
7719 If the device cannot be auto-discovered, or more than one might be discovered
7720 by the driver, I<ConnectionSpec> specifies the connection string to the device.
7721 It can be of the form of a device path (e.g.E<nbsp>C</dev/ttyUSB2>), or, in
7722 case of a non-serial USB-connected device, the USB I<VendorID>B<.>I<ProductID>
7723 separated by a period (e.g.E<nbsp>C<0403.6001>). A USB device can also be
7724 specified as I<Bus>B<.>I<Address> (e.g.E<nbsp>C<1.41>).
7725
7726 =item B<SerialComm> I<SerialSpec>
7727
7728 For serial devices with non-standard port settings, this option can be used
7729 to specify them in a form understood by I<sigrok>, e.g.E<nbsp>C<9600/8n1>.
7730 This should not be necessary; drivers know how to communicate with devices they
7731 support.
7732
7733 =item B<MinimumInterval> I<Seconds>
7734
7735 Specifies the minimum time between measurement dispatches to I<collectd>, in
7736 seconds. Since some I<sigrok> supported devices can acquire measurements many
7737 times per second, it may be necessary to throttle these. For example, the
7738 I<RRD plugin> cannot process writes more than once per second.
7739
7740 The default B<MinimumInterval> is B<0>, meaning measurements received from the
7741 device are always dispatched to I<collectd>. When throttled, unused
7742 measurements are discarded.
7743
7744 =back
7745
7746 =head2 Plugin C<smart>
7747
7748 The C<smart> plugin collects SMART information from physical
7749 disks. Values collectd include temperature, power cycle count, poweron
7750 time and bad sectors. Also, all SMART attributes are collected along
7751 with the normalized current value, the worst value, the threshold and
7752 a human readable value.
7753
7754 Using the following two options you can ignore some disks or configure the
7755 collection only of specific disks.
7756
7757 =over 4
7758
7759 =item B<Disk> I<Name>
7760
7761 Select the disk I<Name>. Whether it is collected or ignored depends on the
7762 B<IgnoreSelected> setting, see below. As with other plugins that use the
7763 daemon's ignorelist functionality, a string that starts and ends with a slash
7764 is interpreted as a regular expression. Examples:
7765
7766   Disk "sdd"
7767   Disk "/hda[34]/"
7768
7769 See F</"IGNORELISTS"> for details.
7770
7771 =item B<IgnoreSelected> B<true>|B<false>
7772
7773 Sets whether selected disks, i.E<nbsp>e. the ones matches by any of the B<Disk>
7774 statements, are ignored or if all other disks are ignored. The behavior
7775 (hopefully) is intuitive: If no B<Disk> option is configured, all disks are
7776 collected. If at least one B<Disk> option is given and no B<IgnoreSelected> or
7777 set to B<false>, B<only> matching disks will be collected. If B<IgnoreSelected>
7778 is set to B<true>, all disks are collected B<except> the ones matched.
7779
7780 =item B<IgnoreSleepMode> B<true>|B<false>
7781
7782 Normally, the C<smart> plugin will ignore disks that are reported to be asleep.
7783 This option disables the sleep mode check and allows the plugin to collect data
7784 from these disks anyway. This is useful in cases where libatasmart mistakenly
7785 reports disks as asleep because it has not been updated to incorporate support
7786 for newer idle states in the ATA spec.
7787
7788 =item B<UseSerial> B<true>|B<false>
7789
7790 A disk's kernel name (e.g., sda) can change from one boot to the next. If this
7791 option is enabled, the C<smart> plugin will use the disk's serial number (e.g.,
7792 HGST_HUH728080ALE600_2EJ8VH8X) instead of the kernel name as the key for
7793 storing data. This ensures that the data for a given disk will be kept together
7794 even if the kernel name changes.
7795
7796 =back
7797
7798 =head2 Plugin C<snmp>
7799
7800 Since the configuration of the C<snmp plugin> is a little more complicated than
7801 other plugins, its documentation has been moved to an own manpage,
7802 L<collectd-snmp(5)>. Please see there for details.
7803
7804 =head2 Plugin C<snmp_agent>
7805
7806 The I<snmp_agent> plugin is an AgentX subagent that receives and handles queries
7807 from SNMP master agent and returns the data collected by read plugins.
7808 The I<snmp_agent> plugin handles requests only for OIDs specified in
7809 configuration file. To handle SNMP queries the plugin gets data from collectd
7810 and translates requested values from collectd's internal format to SNMP format.
7811 This plugin is a generic plugin and cannot work without configuration.
7812 For more details on AgentX subagent see
7813 <http://www.net-snmp.org/tutorial/tutorial-5/toolkit/demon/>
7814
7815 B<Synopsis:>
7816
7817   <Plugin snmp_agent>
7818     <Data "memAvailReal">
7819       Plugin "memory"
7820       #PluginInstance "some"
7821       Type "memory"
7822       TypeInstance "free"
7823       OIDs "1.3.6.1.4.1.2021.4.6.0"
7824     </Data>
7825     <Table "ifTable">
7826       IndexOID "IF-MIB::ifIndex"
7827       SizeOID "IF-MIB::ifNumber"
7828       <Data "ifDescr">
7829         <IndexKey>
7830           Source "PluginInstance"
7831         </IndexKey>
7832         Plugin "interface"
7833         OIDs "IF-MIB::ifDescr"
7834       </Data>
7835       <Data "ifOctets">
7836         Plugin "interface"
7837         Type "if_octets"
7838         TypeInstance ""
7839         OIDs "IF-MIB::ifInOctets" "IF-MIB::ifOutOctets"
7840       </Data>
7841     </Table>
7842     <Table "CPUAffinityTable">
7843       <Data "DomainName">
7844         <IndexKey>
7845           Source "PluginInstance"
7846         </IndexKey>
7847         Plugin "virt"
7848         OIDs "LIBVIRT-HYPERVISOR-MIB::lvhAffinityDomainName"
7849       </Data>
7850       <Data "VCPU">
7851         Plugin "virt"
7852         <IndexKey>
7853           Source "TypeInstance"
7854           Regex "^vcpu_([0-9]{1,3})-cpu_[0-9]{1,3}$"
7855           Group 1
7856         </IndexKey>
7857         OIDs "LIBVIRT-HYPERVISOR-MIB::lvhVCPUIndex"
7858       </Data>
7859       <Data "CPU">
7860         Plugin "virt"
7861         <IndexKey>
7862           Source "TypeInstance"
7863           Regex "^vcpu_[0-9]{1,3}-cpu_([0-9]{1,3})$"
7864           Group 1
7865         </IndexKey>
7866         OIDs "LIBVIRT-HYPERVISOR-MIB::lvhCPUIndex"
7867       </Data>
7868       <Data "CPUAffinity">
7869         Plugin "virt"
7870         Type "cpu_affinity"
7871         OIDs "LIBVIRT-HYPERVISOR-MIB::lvhCPUAffinity"
7872       </Data>
7873     </Table>
7874   </Plugin>
7875
7876 There are two types of blocks that can be contained in the
7877 C<E<lt>PluginE<nbsp> snmp_agentE<gt>> block: B<Data> and B<Table>:
7878
7879 =head3 B<Data> block
7880
7881 The B<Data> block defines a list OIDs that are to be handled. This block can
7882 define scalar or table OIDs. If B<Data> block is defined inside of B<Table>
7883 block it reperesents table OIDs.
7884 The following options can be set:
7885
7886 =over 4
7887
7888 =item B<IndexKey> block
7889
7890 B<IndexKey> block contains all data needed for proper index build of snmp table.
7891 In case more than
7892 one table B<Data> block has B<IndexKey> block present then multiple key index is
7893 built. If B<Data> block defines scalar data type B<IndexKey> has no effect and can
7894 be omitted.
7895
7896 =over 8
7897
7898 =item B<Source> I<String>
7899
7900 B<Source> can be set to one of the following values: "Hostname", "Plugin",
7901 "PluginInstance", "Type", "TypeInstance". This value indicates which field of
7902 corresponding collectd metric is taken as a SNMP table index.
7903
7904 =item B<Regex> I<String>
7905
7906 B<Regex> option can also be used to parse strings or numbers out of
7907 specific field. For example: type-instance field which is "vcpu1-cpu2" can be
7908 parsed into two numeric fields CPU = 2 and VCPU = 1 and can be later used
7909 as a table index.
7910
7911 =item B<Group> I<Number>
7912
7913 B<Group> number can be specified in case groups are used in regex.
7914
7915 =back
7916
7917 =item B<Plugin> I<String>
7918
7919 Read plugin name whose collected data will be mapped to specified OIDs.
7920
7921 =item B<PluginInstance> I<String>
7922
7923 Read plugin instance whose collected data will be mapped to specified OIDs.
7924 The field is optional and by default there is no plugin instance check.
7925 Allowed only if B<Data> block defines scalar data type.
7926
7927 =item B<Type> I<String>
7928
7929 Collectd's type that is to be used for specified OID, e.E<nbsp>g. "if_octets"
7930 for example. The types are read from the B<TypesDB> (see L<collectd.conf(5)>).
7931
7932 =item B<TypeInstance> I<String>
7933
7934 Collectd's type-instance that is to be used for specified OID.
7935
7936 =item B<OIDs> I<OID> [I<OID> ...]
7937
7938 Configures the OIDs to be handled by I<snmp_agent> plugin. Values for these OIDs
7939 are taken from collectd data type specified by B<Plugin>, B<PluginInstance>,
7940 B<Type>, B<TypeInstance> fields of this B<Data> block. Number of the OIDs
7941 configured should correspond to number of values in specified B<Type>.
7942 For example two OIDs "IF-MIB::ifInOctets" "IF-MIB::ifOutOctets" can be mapped to
7943 "rx" and "tx" values of "if_octets" type.
7944
7945 =item B<Scale> I<Value>
7946
7947 The values taken from collectd are multiplied by I<Value>. The field is optional
7948 and the default is B<1.0>.
7949
7950 =item B<Shift> I<Value>
7951
7952 I<Value> is added to values from collectd after they have been multiplied by
7953 B<Scale> value. The field is optional and the default value is B<0.0>.
7954
7955 =back
7956
7957 =head3 The B<Table> block
7958
7959 The B<Table> block defines a collection of B<Data> blocks that belong to one
7960 snmp table. In addition to multiple B<Data> blocks the following options can be
7961 set:
7962
7963 =over 4
7964
7965 =item B<IndexOID> I<OID>
7966
7967 OID that is handled by the plugin and is mapped to numerical index value that is
7968 generated by the plugin for each table record.
7969
7970 =item B<SizeOID> I<OID>
7971
7972 OID that is handled by the plugin. Returned value is the number of records in
7973 the table. The field is optional.
7974
7975 =back
7976
7977 =head2 Plugin C<statsd>
7978
7979 The I<statsd plugin> listens to a UDP socket, reads "events" in the statsd
7980 protocol and dispatches rates or other aggregates of these numbers
7981 periodically.
7982
7983 The plugin implements the I<Counter>, I<Timer>, I<Gauge> and I<Set> types which
7984 are dispatched as the I<collectd> types C<derive>, C<latency>, C<gauge> and
7985 C<objects> respectively.
7986
7987 The following configuration options are valid:
7988
7989 =over 4
7990
7991 =item B<Host> I<Host>
7992
7993 Bind to the hostname / address I<Host>. By default, the plugin will bind to the
7994 "any" address, i.e. accept packets sent to any of the hosts addresses.
7995
7996 =item B<Port> I<Port>
7997
7998 UDP port to listen to. This can be either a service name or a port number.
7999 Defaults to C<8125>.
8000
8001 =item B<DeleteCounters> B<false>|B<true>
8002
8003 =item B<DeleteTimers> B<false>|B<true>
8004
8005 =item B<DeleteGauges> B<false>|B<true>
8006
8007 =item B<DeleteSets> B<false>|B<true>
8008
8009 These options control what happens if metrics are not updated in an interval.
8010 If set to B<False>, the default, metrics are dispatched unchanged, i.e. the
8011 rate of counters and size of sets will be zero, timers report C<NaN> and gauges
8012 are unchanged. If set to B<True>, the such metrics are not dispatched and
8013 removed from the internal cache.
8014
8015 =item B<CounterSum> B<false>|B<true>
8016
8017 When enabled, creates a C<count> metric which reports the change since the last
8018 read. This option primarily exists for compatibility with the I<statsd>
8019 implementation by Etsy.
8020
8021 =item B<TimerPercentile> I<Percent>
8022
8023 Calculate and dispatch the configured percentile, i.e. compute the latency, so
8024 that I<Percent> of all reported timers are smaller than or equal to the
8025 computed latency. This is useful for cutting off the long tail latency, as it's
8026 often done in I<Service Level Agreements> (SLAs).
8027
8028 Different percentiles can be calculated by setting this option several times.
8029 If none are specified, no percentiles are calculated / dispatched.
8030
8031 =item B<TimerLower> B<false>|B<true>
8032
8033 =item B<TimerUpper> B<false>|B<true>
8034
8035 =item B<TimerSum> B<false>|B<true>
8036
8037 =item B<TimerCount> B<false>|B<true>
8038
8039 Calculate and dispatch various values out of I<Timer> metrics received during
8040 an interval. If set to B<False>, the default, these values aren't calculated /
8041 dispatched.
8042
8043 Please note what reported timer values less than 0.001 are ignored in all B<Timer*> reports.
8044
8045 =back
8046
8047 =head2 Plugin C<swap>
8048
8049 The I<Swap plugin> collects information about used and available swap space. On
8050 I<Linux> and I<Solaris>, the following options are available:
8051
8052 =over 4
8053
8054 =item B<ReportByDevice> B<false>|B<true>
8055
8056 Configures how to report physical swap devices. If set to B<false> (the
8057 default), the summary over all swap devices is reported only, i.e. the globally
8058 used and available space over all devices. If B<true> is configured, the used
8059 and available space of each device will be reported separately.
8060
8061 This option is only available if the I<Swap plugin> can read C</proc/swaps>
8062 (under Linux) or use the L<swapctl(2)> mechanism (under I<Solaris>).
8063
8064 =item B<ReportBytes> B<false>|B<true>
8065
8066 When enabled, the I<swap I/O> is reported in bytes. When disabled, the default,
8067 I<swap I/O> is reported in pages. This option is available under Linux only.
8068
8069 =item B<ValuesAbsolute> B<true>|B<false>
8070
8071 Enables or disables reporting of absolute swap metrics, i.e. number of I<bytes>
8072 available and used. Defaults to B<true>.
8073
8074 =item B<ValuesPercentage> B<false>|B<true>
8075
8076 Enables or disables reporting of relative swap metrics, i.e. I<percent>
8077 available and free. Defaults to B<false>.
8078
8079 This is useful for deploying I<collectd> in a heterogeneous environment, where
8080 swap sizes differ and you want to specify generic thresholds or similar.
8081
8082 =item B<ReportIO> B<true>|B<false>
8083
8084 Enables or disables reporting swap IO. Defaults to B<true>.
8085
8086 This is useful for the cases when swap IO is not neccessary, is not available,
8087 or is not reliable.
8088
8089 =back
8090
8091 =head2 Plugin C<syslog>
8092
8093 =over 4
8094
8095 =item B<LogLevel> B<debug|info|notice|warning|err>
8096
8097 Sets the log-level. If, for example, set to B<notice>, then all events with
8098 severity B<notice>, B<warning>, or B<err> will be submitted to the
8099 syslog-daemon.
8100
8101 Please note that B<debug> is only available if collectd has been compiled with
8102 debugging support.
8103
8104 =item B<NotifyLevel> B<OKAY>|B<WARNING>|B<FAILURE>
8105
8106 Controls which notifications should be sent to syslog. The default behaviour is
8107 not to send any. Less severe notifications always imply logging more severe
8108 notifications: Setting this to B<OKAY> means all notifications will be sent to
8109 syslog, setting this to B<WARNING> will send B<WARNING> and B<FAILURE>
8110 notifications but will dismiss B<OKAY> notifications. Setting this option to
8111 B<FAILURE> will only send failures to syslog.
8112
8113 =back
8114
8115 =head2 Plugin C<table>
8116
8117 The C<table plugin> provides generic means to parse tabular data and dispatch
8118 user specified values. Values are selected based on column numbers. For
8119 example, this plugin may be used to get values from the Linux L<proc(5)>
8120 filesystem or CSV (comma separated values) files.
8121
8122   <Plugin table>
8123     <Table "/proc/slabinfo">
8124       #Plugin "slab"
8125       Instance "slabinfo"
8126       Separator " "
8127       <Result>
8128         Type gauge
8129         InstancePrefix "active_objs"
8130         InstancesFrom 0
8131         ValuesFrom 1
8132       </Result>
8133       <Result>
8134         Type gauge
8135         InstancePrefix "objperslab"
8136         InstancesFrom 0
8137         ValuesFrom 4
8138       </Result>
8139     </Table>
8140   </Plugin>
8141
8142 The configuration consists of one or more B<Table> blocks, each of which
8143 configures one file to parse. Within each B<Table> block, there are one or
8144 more B<Result> blocks, which configure which data to select and how to
8145 interpret it.
8146
8147 The following options are available inside a B<Table> block:
8148
8149 =over 4
8150
8151 =item B<Plugin> I<Plugin>
8152
8153 If specified, I<Plugin> is used as the plugin name when submitting values.
8154 Defaults to B<table>.
8155
8156 =item B<Instance> I<instance>
8157
8158 If specified, I<instance> is used as the plugin instance. If omitted, the
8159 filename of the table is used instead, with all special characters replaced
8160 with an underscore (C<_>).
8161
8162 =item B<Separator> I<string>
8163
8164 Any character of I<string> is interpreted as a delimiter between the different
8165 columns of the table. A sequence of two or more contiguous delimiters in the
8166 table is considered to be a single delimiter, i.E<nbsp>e. there cannot be any
8167 empty columns. The plugin uses the L<strtok_r(3)> function to parse the lines
8168 of a table - see its documentation for more details. This option is mandatory.
8169
8170 A horizontal tab, newline and carriage return may be specified by C<\\t>,
8171 C<\\n> and C<\\r> respectively. Please note that the double backslashes are
8172 required because of collectd's config parsing.
8173
8174 =back
8175
8176 The following options are available inside a B<Result> block:
8177
8178 =over 4
8179
8180 =item B<Type> I<type>
8181
8182 Sets the type used to dispatch the values to the daemon. Detailed information
8183 about types and their configuration can be found in L<types.db(5)>. This
8184 option is mandatory.
8185
8186 =item B<InstancePrefix> I<prefix>
8187
8188 If specified, prepend I<prefix> to the type instance. If omitted, only the
8189 B<InstancesFrom> option is considered for the type instance.
8190
8191 =item B<InstancesFrom> I<column0> [I<column1> ...]
8192
8193 If specified, the content of the given columns (identified by the column
8194 number starting at zero) will be used to create the type instance for each
8195 row. Multiple values (and the instance prefix) will be joined together with
8196 dashes (I<->) as separation character. If omitted, only the B<InstancePrefix>
8197 option is considered for the type instance.
8198
8199 The plugin itself does not check whether or not all built instances are
8200 different. It’s your responsibility to assure that each is unique. This is
8201 especially true, if you do not specify B<InstancesFrom>: B<You> have to make
8202 sure that the table only contains one row.
8203
8204 If neither B<InstancePrefix> nor B<InstancesFrom> is given, the type instance
8205 will be empty.
8206
8207 =item B<ValuesFrom> I<column0> [I<column1> ...]
8208
8209 Specifies the columns (identified by the column numbers starting at zero)
8210 whose content is used as the actual data for the data sets that are dispatched
8211 to the daemon. How many such columns you need is determined by the B<Type>
8212 setting above. If you specify too many or not enough columns, the plugin will
8213 complain about that and no data will be submitted to the daemon. The plugin
8214 uses L<strtoll(3)> and L<strtod(3)> to parse counter and gauge values
8215 respectively, so anything supported by those functions is supported by the
8216 plugin as well. This option is mandatory.
8217
8218 =back
8219
8220 =head2 Plugin C<tail>
8221
8222 The C<tail plugin> follows logfiles, just like L<tail(1)> does, parses
8223 each line and dispatches found values. What is matched can be configured by the
8224 user using (extended) regular expressions, as described in L<regex(7)>.
8225
8226   <Plugin "tail">
8227     <File "/var/log/exim4/mainlog">
8228       Plugin "mail"
8229       Instance "exim"
8230       Interval 60
8231       <Match>
8232         Regex "S=([1-9][0-9]*)"
8233         DSType "CounterAdd"
8234         Type "ipt_bytes"
8235         Instance "total"
8236       </Match>
8237       <Match>
8238         Regex "\\<R=local_user\\>"
8239         ExcludeRegex "\\<R=local_user\\>.*mail_spool defer"
8240         DSType "CounterInc"
8241         Type "counter"
8242         Instance "local_user"
8243       </Match>
8244       <Match>
8245         Regex "l=([0-9]*\\.[0-9]*)"
8246         <DSType "Distribution">
8247           Percentile 99
8248           Bucket 0 100
8249           #BucketType "bucket"
8250         </DSType>
8251         Type "latency"
8252         Instance "foo"
8253       </Match>
8254     </File>
8255   </Plugin>
8256
8257 The config consists of one or more B<File> blocks, each of which configures one
8258 logfile to parse. Within each B<File> block, there are one or more B<Match>
8259 blocks, which configure a regular expression to search for.
8260
8261 The B<Plugin> and B<Instance> options in the B<File> block may be used to set
8262 the plugin name and instance respectively. So in the above example the plugin name
8263 C<mail-exim> would be used.
8264
8265 These options are applied for all B<Match> blocks that B<follow> it, until the
8266 next B<Plugin> or B<Instance> option. This way you can extract several plugin
8267 instances from one logfile, handy when parsing syslog and the like.
8268
8269 The B<Interval> option allows you to define the length of time between reads. If
8270 this is not set, the default Interval will be used.
8271
8272 Each B<Match> block has the following options to describe how the match should
8273 be performed:
8274
8275 =over 4
8276
8277 =item B<Regex> I<regex>
8278
8279 Sets the regular expression to use for matching against a line. The first
8280 subexpression has to match something that can be turned into a number by
8281 L<strtoll(3)> or L<strtod(3)>, depending on the value of C<CounterAdd>, see
8282 below. Because B<extended> regular expressions are used, you do not need to use
8283 backslashes for subexpressions! If in doubt, please consult L<regex(7)>. Due to
8284 collectd's config parsing you need to escape backslashes, though. So if you
8285 want to match literal parentheses you need to do the following:
8286
8287   Regex "SPAM \\(Score: (-?[0-9]+\\.[0-9]+)\\)"
8288
8289 =item B<ExcludeRegex> I<regex>
8290
8291 Sets an optional regular expression to use for excluding lines from the match.
8292 An example which excludes all connections from localhost from the match:
8293
8294   ExcludeRegex "127\\.0\\.0\\.1"
8295
8296 =item B<DSType> I<Type>
8297
8298 Sets how the values are cumulated. I<Type> is one of:
8299
8300 =over 4
8301
8302 =item B<GaugeAverage>
8303
8304 Calculate the average.
8305
8306 =item B<GaugeMin>
8307
8308 Use the smallest number only.
8309
8310 =item B<GaugeMax>
8311
8312 Use the greatest number only.
8313
8314 =item B<GaugeLast>
8315
8316 Use the last number found.
8317
8318 =item B<GaugePersist>
8319
8320 Use the last number found. The number is not reset at the end of an interval.
8321 It is continously reported until another number is matched. This is intended
8322 for cases in which only state changes are reported, for example a thermometer
8323 that only reports the temperature when it changes.
8324
8325 =item B<CounterSet>
8326
8327 =item B<DeriveSet>
8328
8329 =item B<AbsoluteSet>
8330
8331 The matched number is a counter. Simply I<sets> the internal counter to this
8332 value. Variants exist for C<COUNTER>, C<DERIVE>, and C<ABSOLUTE> data sources.
8333
8334 =item B<GaugeAdd>
8335
8336 =item B<CounterAdd>
8337
8338 =item B<DeriveAdd>
8339
8340 Add the matched value to the internal counter. In case of B<DeriveAdd>, the
8341 matched number may be negative, which will effectively subtract from the
8342 internal counter.
8343
8344 =item B<GaugeInc>
8345
8346 =item B<CounterInc>
8347
8348 =item B<DeriveInc>
8349
8350 Increase the internal counter by one. These B<DSType> are the only ones that do
8351 not use the matched subexpression, but simply count the number of matched
8352 lines. Thus, you may use a regular expression without submatch in this case.
8353
8354 =item B<Distribution>
8355
8356 Type to do calculations based on the distribution of values, primarily
8357 calculating percentiles. This is primarily geared towards latency, but can be
8358 used for other metrics as well. The range of values tracked with this setting
8359 must be in the range (0–2^34) and can be fractional. Please note that neither
8360 zero nor 2^34 are inclusive bounds, i.e. zero I<cannot> be handled by a
8361 distribution.
8362
8363 This option must be used together with the B<Percentile> and/or B<Bucket>
8364 options.
8365
8366 B<Synopsis:>
8367
8368   <DSType "Distribution">
8369     Percentile 99
8370     Bucket 0 100
8371     BucketType "bucket"
8372   </DSType>
8373
8374 =over 4
8375
8376 =item B<Percentile> I<Percent>
8377
8378 Calculate and dispatch the configured percentile, i.e. compute the value, so
8379 that I<Percent> of all matched values are smaller than or equal to the computed
8380 latency.
8381
8382 Metrics are reported with the I<type> B<Type> (the value of the above option)
8383 and the I<type instance> C<[E<lt>InstanceE<gt>-]E<lt>PercentE<gt>>.
8384
8385 This option may be repeated to calculate more than one percentile.
8386
8387 =item B<Bucket> I<lower_bound> I<upper_bound>
8388
8389 Export the number of values (a C<DERIVE>) falling within the given range. Both,
8390 I<lower_bound> and I<upper_bound> may be a fractional number, such as B<0.5>.
8391 Each B<Bucket> option specifies an interval C<(I<lower_bound>,
8392 I<upper_bound>]>, i.e. the range I<excludes> the lower bound and I<includes>
8393 the upper bound. I<lower_bound> and I<upper_bound> may be zero, meaning no
8394 lower/upper bound.
8395
8396 To export the entire (0–inf) range without overlap, use the upper bound of the
8397 previous range as the lower bound of the following range. In other words, use
8398 the following schema:
8399
8400   Bucket   0   1
8401   Bucket   1   2
8402   Bucket   2   5
8403   Bucket   5  10
8404   Bucket  10  20
8405   Bucket  20  50
8406   Bucket  50   0
8407
8408 Metrics are reported with the I<type> set by B<BucketType> option (C<bucket> 
8409 by default) and the I<type instance>
8410 C<E<lt>TypeE<gt>[-E<lt>InstanceE<gt>]-E<lt>lower_boundE<gt>_E<lt>upper_boundE<gt>>.
8411
8412 This option may be repeated to calculate more than one rate.
8413
8414 =item B<BucketType> I<Type>
8415
8416 Sets the type used to dispatch B<Bucket> metrics.
8417 Optional, by default C<bucket> will be used.
8418
8419 =back
8420
8421 =back
8422
8423 The B<Gauge*> and B<Distribution> types interpret the submatch as a floating
8424 point number, using L<strtod(3)>. The B<Counter*> and B<AbsoluteSet> types
8425 interpret the submatch as an unsigned integer using L<strtoull(3)>. The
8426 B<Derive*> types interpret the submatch as a signed integer using
8427 L<strtoll(3)>. B<CounterInc> and B<DeriveInc> do not use the submatch at all
8428 and it may be omitted in this case.
8429
8430 =item B<Type> I<Type>
8431
8432 Sets the type used to dispatch this value. Detailed information about types and
8433 their configuration can be found in L<types.db(5)>.
8434
8435 =item B<Instance> I<TypeInstance>
8436
8437 This optional setting sets the type instance to use.
8438
8439 =back
8440
8441 =head2 Plugin C<tail_csv>
8442
8443 The I<tail_csv plugin> reads files in the CSV format, e.g. the statistics file
8444 written by I<Snort>.
8445
8446 B<Synopsis:>
8447
8448  <Plugin "tail_csv">
8449    <Metric "snort-dropped">
8450        Type "percent"
8451        Instance "dropped"
8452        Index 1
8453    </Metric>
8454    <File "/var/log/snort/snort.stats">
8455        Plugin "snortstats"
8456        Instance "eth0"
8457        Interval 600
8458        Collect "snort-dropped"
8459    </File>
8460  </Plugin>
8461
8462 The configuration consists of one or more B<Metric> blocks that define an index
8463 into the line of the CSV file and how this value is mapped to I<collectd's>
8464 internal representation. These are followed by one or more B<Instance> blocks
8465 which configure which file to read, in which interval and which metrics to
8466 extract.
8467
8468 =over 4
8469
8470 =item E<lt>B<Metric> I<Name>E<gt>
8471
8472 The B<Metric> block configures a new metric to be extracted from the statistics
8473 file and how it is mapped on I<collectd's> data model. The string I<Name> is
8474 only used inside the B<Instance> blocks to refer to this block, so you can use
8475 one B<Metric> block for multiple CSV files.
8476
8477 =over 4
8478
8479 =item B<Type> I<Type>
8480
8481 Configures which I<Type> to use when dispatching this metric. Types are defined
8482 in the L<types.db(5)> file, see the appropriate manual page for more
8483 information on specifying types. Only types with a single I<data source> are
8484 supported by the I<tail_csv plugin>. The information whether the value is an
8485 absolute value (i.e. a C<GAUGE>) or a rate (i.e. a C<DERIVE>) is taken from the
8486 I<Type's> definition.
8487
8488 =item B<Instance> I<TypeInstance>
8489
8490 If set, I<TypeInstance> is used to populate the type instance field of the
8491 created value lists. Otherwise, no type instance is used.
8492
8493 =item B<ValueFrom> I<Index>
8494
8495 Configure to read the value from the field with the zero-based index I<Index>.
8496 If the value is parsed as signed integer, unsigned integer or double depends on
8497 the B<Type> setting, see above.
8498
8499 =back
8500
8501 =item E<lt>B<File> I<Path>E<gt>
8502
8503 Each B<File> block represents one CSV file to read. There must be at least one
8504 I<File> block but there can be multiple if you have multiple CSV files.
8505
8506 =over 4
8507
8508 =item B<Plugin> I<Plugin>
8509
8510 Use I<Plugin> as the plugin name when submitting values.
8511 Defaults to C<tail_csv>.
8512
8513 =item B<Instance> I<PluginInstance>
8514
8515 Sets the I<plugin instance> used when dispatching the values.
8516
8517 =item B<Collect> I<Metric>
8518
8519 Specifies which I<Metric> to collect. This option must be specified at least
8520 once, and you can use this option multiple times to specify more than one
8521 metric to be extracted from this statistic file.
8522
8523 =item B<Interval> I<Seconds>
8524
8525 Configures the interval in which to read values from this instance / file.
8526 Defaults to the plugin's default interval.
8527
8528 =item B<TimeFrom> I<Index>
8529
8530 Rather than using the local time when dispatching a value, read the timestamp
8531 from the field with the zero-based index I<Index>. The value is interpreted as
8532 seconds since epoch. The value is parsed as a double and may be factional.
8533
8534 =back
8535
8536 =back
8537
8538 =head2 Plugin C<teamspeak2>
8539
8540 The C<teamspeak2 plugin> connects to the query port of a teamspeak2 server and
8541 polls interesting global and virtual server data. The plugin can query only one
8542 physical server but unlimited virtual servers. You can use the following
8543 options to configure it:
8544
8545 =over 4
8546
8547 =item B<Host> I<hostname/ip>
8548
8549 The hostname or ip which identifies the physical server.
8550 Default: 127.0.0.1
8551
8552 =item B<Port> I<port>
8553
8554 The query port of the physical server. This needs to be a string.
8555 Default: "51234"
8556
8557 =item B<Server> I<port>
8558
8559 This option has to be added once for every virtual server the plugin should
8560 query. If you want to query the virtual server on port 8767 this is what the
8561 option would look like:
8562
8563   Server "8767"
8564
8565 This option, although numeric, needs to be a string, i.E<nbsp>e. you B<must>
8566 use quotes around it! If no such statement is given only global information
8567 will be collected.
8568
8569 =back
8570
8571 =head2 Plugin C<ted>
8572
8573 The I<TED> plugin connects to a device of "The Energy Detective", a device to
8574 measure power consumption. These devices are usually connected to a serial
8575 (RS232) or USB port. The plugin opens a configured device and tries to read the
8576 current energy readings. For more information on TED, visit
8577 L<http://www.theenergydetective.com/>.
8578
8579 Available configuration options:
8580
8581 =over 4
8582
8583 =item B<Device> I<Path>
8584
8585 Path to the device on which TED is connected. collectd will need read and write
8586 permissions on that file.
8587
8588 Default: B</dev/ttyUSB0>
8589
8590 =item B<Retries> I<Num>
8591
8592 Apparently reading from TED is not that reliable. You can therefore configure a
8593 number of retries here. You only configure the I<retries> here, to if you
8594 specify zero, one reading will be performed (but no retries if that fails); if
8595 you specify three, a maximum of four readings are performed. Negative values
8596 are illegal.
8597
8598 Default: B<0>
8599
8600 =back
8601
8602 =head2 Plugin C<tcpconns>
8603
8604 The C<tcpconns plugin> counts the number of currently established TCP
8605 connections based on the local port and/or the remote port. Since there may be
8606 a lot of connections the default if to count all connections with a local port,
8607 for which a listening socket is opened. You can use the following options to
8608 fine-tune the ports you are interested in:
8609
8610 =over 4
8611
8612 =item B<ListeningPorts> I<true>|I<false>
8613
8614 If this option is set to I<true>, statistics for all local ports for which a
8615 listening socket exists are collected. The default depends on B<LocalPort> and
8616 B<RemotePort> (see below): If no port at all is specifically selected, the
8617 default is to collect listening ports. If specific ports (no matter if local or
8618 remote ports) are selected, this option defaults to I<false>, i.E<nbsp>e. only
8619 the selected ports will be collected unless this option is set to I<true>
8620 specifically.
8621
8622 =item B<LocalPort> I<Port>
8623
8624 Count the connections to a specific local port. This can be used to see how
8625 many connections are handled by a specific daemon, e.E<nbsp>g. the mailserver.
8626 You have to specify the port in numeric form, so for the mailserver example
8627 you'd need to set B<25>.
8628
8629 =item B<RemotePort> I<Port>
8630
8631 Count the connections to a specific remote port. This is useful to see how
8632 much a remote service is used. This is most useful if you want to know how many
8633 connections a local service has opened to remote services, e.E<nbsp>g. how many
8634 connections a mail server or news server has to other mail or news servers, or
8635 how many connections a web proxy holds to web servers. You have to give the
8636 port in numeric form.
8637
8638 =item B<AllPortsSummary> I<true>|I<false>
8639
8640 If this option is set to I<true> a summary of statistics from all connections
8641 are collected. This option defaults to I<false>.
8642
8643 =back
8644
8645 =head2 Plugin C<thermal>
8646
8647 =over 4
8648
8649 =item B<ForceUseProcfs> I<true>|I<false>
8650
8651 By default, the I<Thermal plugin> tries to read the statistics from the Linux
8652 C<sysfs> interface. If that is not available, the plugin falls back to the
8653 C<procfs> interface. By setting this option to I<true>, you can force the
8654 plugin to use the latter. This option defaults to I<false>.
8655
8656 =item B<Device> I<Device>
8657
8658 Selects the name of the thermal device that you want to collect or ignore,
8659 depending on the value of the B<IgnoreSelected> option. This option may be
8660 used multiple times to specify a list of devices.
8661
8662 See F</"IGNORELISTS"> for details.
8663
8664 =item B<IgnoreSelected> I<true>|I<false>
8665
8666 Invert the selection: If set to true, all devices B<except> the ones that
8667 match the device names specified by the B<Device> option are collected. By
8668 default only selected devices are collected if a selection is made. If no
8669 selection is configured at all, B<all> devices are selected.
8670
8671 =back
8672
8673 =head2 Plugin C<threshold>
8674
8675 The I<Threshold plugin> checks values collected or received by I<collectd>
8676 against a configurable I<threshold> and issues I<notifications> if values are
8677 out of bounds.
8678
8679 Documentation for this plugin is available in the L<collectd-threshold(5)>
8680 manual page.
8681
8682 =head2 Plugin C<tokyotyrant>
8683
8684 The I<TokyoTyrant plugin> connects to a TokyoTyrant server and collects a
8685 couple metrics: number of records, and database size on disk.
8686
8687 =over 4
8688
8689 =item B<Host> I<Hostname/IP>
8690
8691 The hostname or IP which identifies the server.
8692 Default: B<127.0.0.1>
8693
8694 =item B<Port> I<Service/Port>
8695
8696 The query port of the server. This needs to be a string, even if the port is
8697 given in its numeric form.
8698 Default: B<1978>
8699
8700 =back
8701
8702 =head2 Plugin C<turbostat>
8703
8704 The I<Turbostat plugin> reads CPU frequency and C-state residency on modern
8705 Intel processors by using I<Model Specific Registers>.
8706
8707 =over 4
8708
8709 =item B<CoreCstates> I<Bitmask(Integer)>
8710
8711 Bit mask of the list of core C-states supported by the processor.
8712 This option should only be used if the automated detection fails.
8713 Default value extracted from the CPU model and family.
8714
8715 Currently supported C-states (by this plugin): 3, 6, 7
8716
8717 B<Example:>
8718
8719   All states (3, 6 and 7):
8720   (1<<3) + (1<<6) + (1<<7) = 392
8721
8722 =item B<PackageCstates> I<Bitmask(Integer)>
8723
8724 Bit mask of the list of packages C-states supported by the processor. This
8725 option should only be used if the automated detection fails. Default value
8726 extracted from the CPU model and family.
8727
8728 Currently supported C-states (by this plugin): 2, 3, 6, 7, 8, 9, 10
8729
8730 B<Example:>
8731
8732   States 2, 3, 6 and 7:
8733   (1<<2) + (1<<3) + (1<<6) + (1<<7) = 396
8734
8735 =item B<SystemManagementInterrupt> I<true>|I<false>
8736
8737 Boolean enabling the collection of the I/O System-Management Interrupt counter.
8738 This option should only be used if the automated detection fails or if you want
8739 to disable this feature.
8740
8741 =item B<DigitalTemperatureSensor> I<true>|I<false>
8742
8743 Boolean enabling the collection of the temperature of each core. This option
8744 should only be used if the automated detection fails or if you want to disable
8745 this feature.
8746
8747 =item B<TCCActivationTemp> I<Temperature>
8748
8749 I<Thermal Control Circuit Activation Temperature> of the installed CPU. This
8750 temperature is used when collecting the temperature of cores or packages. This
8751 option should only be used if the automated detection fails. Default value
8752 extracted from B<MSR_IA32_TEMPERATURE_TARGET>.
8753
8754 =item B<RunningAveragePowerLimit> I<Bitmask(Integer)>
8755
8756 Bit mask of the list of elements to be thermally monitored. This option should
8757 only be used if the automated detection fails or if you want to disable some
8758 collections. The different bits of this bit mask accepted by this plugin are:
8759
8760 =over 4
8761
8762 =item 0 ('1'): Package
8763
8764 =item 1 ('2'): DRAM
8765
8766 =item 2 ('4'): Cores
8767
8768 =item 3 ('8'): Embedded graphic device
8769
8770 =back
8771
8772 =item B<LogicalCoreNames> I<true>|I<false>
8773
8774 Boolean enabling the use of logical core numbering for per core statistics.
8775 When enabled, C<cpuE<lt>nE<gt>> is used as plugin instance, where I<n> is a
8776 dynamic number assigned by the kernel. Otherwise, C<coreE<lt>nE<gt>> is used
8777 if there is only one package and C<pkgE<lt>nE<gt>-coreE<lt>mE<gt>> if there is
8778 more than one, where I<n> is the n-th core of package I<m>.
8779
8780 =back
8781
8782 =head2 Plugin C<unixsock>
8783
8784 =over 4
8785
8786 =item B<SocketFile> I<Path>
8787
8788 Sets the socket-file which is to be created.
8789
8790 =item B<SocketGroup> I<Group>
8791
8792 If running as root change the group of the UNIX-socket after it has been
8793 created. Defaults to B<collectd>.
8794
8795 =item B<SocketPerms> I<Permissions>
8796
8797 Change the file permissions of the UNIX-socket after it has been created. The
8798 permissions must be given as a numeric, octal value as you would pass to
8799 L<chmod(1)>. Defaults to B<0770>.
8800
8801 =item B<DeleteSocket> B<false>|B<true>
8802
8803 If set to B<true>, delete the socket file before calling L<bind(2)>, if a file
8804 with the given name already exists. If I<collectd> crashes a socket file may be
8805 left over, preventing the daemon from opening a new socket when restarted.
8806 Since this is potentially dangerous, this defaults to B<false>.
8807
8808 =back
8809
8810 =head2 Plugin C<uuid>
8811
8812 This plugin, if loaded, causes the Hostname to be taken from the machine's
8813 UUID. The UUID is a universally unique designation for the machine, usually
8814 taken from the machine's BIOS. This is most useful if the machine is running in
8815 a virtual environment such as Xen, in which case the UUID is preserved across
8816 shutdowns and migration.
8817
8818 The following methods are used to find the machine's UUID, in order:
8819
8820 =over 4
8821
8822 =item *
8823
8824 Check I</etc/uuid> (or I<UUIDFile>).
8825
8826 =item *
8827
8828 Check for UUID from HAL (L<http://www.freedesktop.org/wiki/Software/hal>) if
8829 present.
8830
8831 =item *
8832
8833 Check for UUID from C<dmidecode> / SMBIOS.
8834
8835 =item *
8836
8837 Check for UUID from Xen hypervisor.
8838
8839 =back
8840
8841 If no UUID can be found then the hostname is not modified.
8842
8843 =over 4
8844
8845 =item B<UUIDFile> I<Path>
8846
8847 Take the UUID from the given file (default I</etc/uuid>).
8848
8849 =back
8850
8851 =head2 Plugin C<varnish>
8852
8853 The I<varnish plugin> collects information about Varnish, an HTTP accelerator.
8854 It collects a subset of the values displayed by L<varnishstat(1)>, and
8855 organizes them in categories which can be enabled or disabled. Currently only
8856 metrics shown in L<varnishstat(1)>'s I<MAIN> section are collected. The exact
8857 meaning of each metric can be found in L<varnish-counters(7)>.
8858
8859 Synopsis:
8860
8861  <Plugin "varnish">
8862    <Instance "example">
8863      CollectBackend     true
8864      CollectBan         false
8865      CollectCache       true
8866      CollectConnections true
8867      CollectDirectorDNS false
8868      CollectESI         false
8869      CollectFetch       false
8870      CollectHCB         false
8871      CollectObjects     false
8872      CollectPurge       false
8873      CollectSession     false
8874      CollectSHM         true
8875      CollectSMA         false
8876      CollectSMS         false
8877      CollectSM          false
8878      CollectStruct      false
8879      CollectTotals      false
8880      CollectUptime      false
8881      CollectVCL         false
8882      CollectVSM         false
8883      CollectWorkers     false
8884      CollectLock        false
8885      CollectMempool     false
8886      CollectManagement  false
8887      CollectSMF         false
8888      CollectVBE         false
8889      CollectMSE         false
8890    </Instance>
8891  </Plugin>
8892
8893 The configuration consists of one or more E<lt>B<Instance>E<nbsp>I<Name>E<gt>
8894 blocks. I<Name> is the parameter passed to "varnishd -n". If left empty, it
8895 will collectd statistics from the default "varnishd" instance (this should work
8896 fine in most cases).
8897
8898 Inside each E<lt>B<Instance>E<gt> blocks, the following options are recognized:
8899
8900 =over 4
8901
8902 =item B<CollectBackend> B<true>|B<false>
8903
8904 Back-end connection statistics, such as successful, reused,
8905 and closed connections. True by default.
8906
8907 =item B<CollectBan> B<true>|B<false>
8908
8909 Statistics about ban operations, such as number of bans added, retired, and
8910 number of objects tested against ban operations. Only available with Varnish
8911 3.x and above. False by default.
8912
8913 =item B<CollectCache> B<true>|B<false>
8914
8915 Cache hits and misses. True by default.
8916
8917 =item B<CollectConnections> B<true>|B<false>
8918
8919 Number of client connections received, accepted and dropped. True by default.
8920
8921 =item B<CollectDirectorDNS> B<true>|B<false>
8922
8923 DNS director lookup cache statistics. Only available with Varnish 3.x. False by
8924 default.
8925
8926 =item B<CollectESI> B<true>|B<false>
8927
8928 Edge Side Includes (ESI) parse statistics. False by default.
8929
8930 =item B<CollectFetch> B<true>|B<false>
8931
8932 Statistics about fetches (HTTP requests sent to the backend). False by default.
8933
8934 =item B<CollectHCB> B<true>|B<false>
8935
8936 Inserts and look-ups in the crit bit tree based hash. Look-ups are
8937 divided into locked and unlocked look-ups. False by default.
8938
8939 =item B<CollectObjects> B<true>|B<false>
8940
8941 Statistics on cached objects: number of objects expired, nuked (prematurely
8942 expired), saved, moved, etc. False by default.
8943
8944 =item B<CollectPurge> B<true>|B<false>
8945
8946 Statistics about purge operations, such as number of purges added, retired, and
8947 number of objects tested against purge operations. Only available with Varnish
8948 2.x. False by default.
8949
8950 =item B<CollectSession> B<true>|B<false>
8951
8952 Client session statistics. Number of past and current sessions, session herd and
8953 linger counters, etc. False by default. Note that if using Varnish 4.x, some
8954 metrics found in the Connections and Threads sections with previous versions of
8955 Varnish have been moved here.
8956
8957 =item B<CollectSHM> B<true>|B<false>
8958
8959 Statistics about the shared memory log, a memory region to store
8960 log messages which is flushed to disk when full. True by default.
8961
8962 =item B<CollectSMA> B<true>|B<false>
8963
8964 malloc or umem (umem_alloc(3MALLOC) based) storage statistics. The umem storage
8965 component is Solaris specific. Note: SMA, SMF and MSE share counters, enable
8966 only the one used by the Varnish instance. Only available with Varnish 2.x.
8967 False by default.
8968
8969 =item B<CollectSMS> B<true>|B<false>
8970
8971 synth (synthetic content) storage statistics. This storage
8972 component is used internally only. False by default.
8973
8974 =item B<CollectSM> B<true>|B<false>
8975
8976 file (memory mapped file) storage statistics. Only available with Varnish 2.x.,
8977 in varnish 4.x. use CollectSMF.
8978 False by default.
8979
8980 =item B<CollectStruct> B<true>|B<false>
8981
8982 Current varnish internal state statistics. Number of current sessions, objects
8983 in cache store, open connections to backends (with Varnish 2.x), etc. False by
8984 default.
8985
8986 =item B<CollectTotals> B<true>|B<false>
8987
8988 Collects overview counters, such as the number of sessions created,
8989 the number of requests and bytes transferred. False by default.
8990
8991 =item B<CollectUptime> B<true>|B<false>
8992
8993 Varnish uptime. Only available with Varnish 3.x and above. False by default.
8994
8995 =item B<CollectVCL> B<true>|B<false>
8996
8997 Number of total (available + discarded) VCL (config files). False by default.
8998
8999 =item B<CollectVSM> B<true>|B<false>
9000
9001 Collect statistics about Varnish's shared memory usage (used by the logging and
9002 statistics subsystems). Only available with Varnish 4.x. False by default.
9003
9004 =item B<CollectWorkers> B<true>|B<false>
9005
9006 Collect statistics about worker threads. False by default.
9007
9008 =item B<CollectVBE> B<true>|B<false>
9009
9010 Backend counters. Only available with Varnish 4.x. False by default.
9011
9012 =item B<CollectSMF> B<true>|B<false>
9013
9014 file (memory mapped file) storage statistics. Only available with Varnish 4.x.
9015 Note: SMA, SMF and MSE share counters, enable only the one used by the Varnish
9016 instance. Used to be called SM in Varnish 2.x. False by default.
9017
9018 =item B<CollectManagement> B<true>|B<false>
9019
9020 Management process counters. Only available with Varnish 4.x. False by default.
9021
9022 =item B<CollectLock> B<true>|B<false>
9023
9024 Lock counters. Only available with Varnish 4.x. False by default.
9025
9026 =item B<CollectMempool> B<true>|B<false>
9027
9028 Memory pool counters. Only available with Varnish 4.x. False by default.
9029
9030 =item B<CollectMSE> B<true>|B<false>
9031
9032 Varnish Massive Storage Engine 2.0 (MSE2) is an improved storage backend for
9033 Varnish, replacing the traditional malloc and file storages. Only available
9034 with Varnish-Plus 4.x. Note: SMA, SMF and MSE share counters, enable only the
9035 one used by the Varnish instance. False by default.
9036
9037 =back
9038
9039 =head2 Plugin C<virt>
9040
9041 This plugin allows CPU, disk, network load and other metrics to be collected for
9042 virtualized guests on the machine. The statistics are collected through libvirt
9043 API (L<http://libvirt.org/>). Majority of metrics can be gathered without
9044 installing any additional software on guests, especially I<collectd>, which runs
9045 only on the host system.
9046
9047 Only I<Connection> is required.
9048
9049 =over 4
9050
9051 =item B<Connection> I<uri>
9052
9053 Connect to the hypervisor given by I<uri>. For example if using Xen use:
9054
9055  Connection "xen:///"
9056
9057 Details which URIs allowed are given at L<http://libvirt.org/uri.html>.
9058
9059 =item B<RefreshInterval> I<seconds>
9060
9061 Refresh the list of domains and devices every I<seconds>. The default is 60
9062 seconds. Setting this to be the same or smaller than the I<Interval> will cause
9063 the list of domains and devices to be refreshed on every iteration.
9064
9065 Refreshing the devices in particular is quite a costly operation, so if your
9066 virtualization setup is static you might consider increasing this. If this
9067 option is set to 0, refreshing is disabled completely.
9068
9069 =item B<Domain> I<name>
9070
9071 =item B<BlockDevice> I<name:dev>
9072
9073 =item B<InterfaceDevice> I<name:dev>
9074
9075 =item B<IgnoreSelected> B<true>|B<false>
9076
9077 Select which domains and devices are collected.
9078
9079 If I<IgnoreSelected> is not given or B<false> then only the listed domains and
9080 disk/network devices are collected.
9081
9082 If I<IgnoreSelected> is B<true> then the test is reversed and the listed
9083 domains and disk/network devices are ignored, while the rest are collected.
9084
9085 The domain name and device names may use a regular expression, if the name is
9086 surrounded by I</.../> and collectd was compiled with support for regexps.
9087
9088 The default is to collect statistics for all domains and all their devices.
9089
9090 Example:
9091
9092  BlockDevice "/:hdb/"
9093  IgnoreSelected "true"
9094
9095 Ignore all I<hdb> devices on any domain, but other block devices (eg. I<hda>)
9096 will be collected.
9097
9098 =item B<BlockDeviceFormat> B<target>|B<source>
9099
9100 If I<BlockDeviceFormat> is set to B<target>, the default, then the device name
9101 seen by the guest will be used for reporting metrics.
9102 This corresponds to the C<E<lt>targetE<gt>> node in the XML definition of the
9103 domain.
9104
9105 If I<BlockDeviceFormat> is set to B<source>, then metrics will be reported
9106 using the path of the source, e.g. an image file.
9107 This corresponds to the C<E<lt>sourceE<gt>> node in the XML definition of the
9108 domain.
9109
9110 B<Example:>
9111
9112 If the domain XML have the following device defined:
9113
9114   <disk type='block' device='disk'>
9115     <driver name='qemu' type='raw' cache='none' io='native' discard='unmap'/>
9116     <source dev='/var/lib/libvirt/images/image1.qcow2'/>
9117     <target dev='sda' bus='scsi'/>
9118     <boot order='2'/>
9119     <address type='drive' controller='0' bus='0' target='0' unit='0'/>
9120   </disk>
9121
9122 Setting C<BlockDeviceFormat target> will cause the I<type instance> to be set
9123 to C<sda>.
9124 Setting C<BlockDeviceFormat source> will cause the I<type instance> to be set
9125 to C<var_lib_libvirt_images_image1.qcow2>.
9126
9127 =item B<BlockDeviceFormatBasename> B<false>|B<true>
9128
9129 The B<BlockDeviceFormatBasename> controls whether the full path or the
9130 L<basename(1)> of the source is being used as the I<type instance> when
9131 B<BlockDeviceFormat> is set to B<source>. Defaults to B<false>.
9132
9133 B<Example:>
9134
9135 Assume the device path (source tag) is C</var/lib/libvirt/images/image1.qcow2>.
9136 Setting C<BlockDeviceFormatBasename false> will cause the I<type instance> to
9137 be set to C<var_lib_libvirt_images_image1.qcow2>.
9138 Setting C<BlockDeviceFormatBasename true> will cause the I<type instance> to be
9139 set to C<image1.qcow2>.
9140
9141 =item B<HostnameFormat> B<name|uuid|hostname|...>
9142
9143 When the virt plugin logs data, it sets the hostname of the collected data
9144 according to this setting. The default is to use the guest name as provided by
9145 the hypervisor, which is equal to setting B<name>.
9146
9147 B<uuid> means use the guest's UUID. This is useful if you want to track the
9148 same guest across migrations.
9149
9150 B<hostname> means to use the global B<Hostname> setting, which is probably not
9151 useful on its own because all guests will appear to have the same name.
9152
9153 You can also specify combinations of these fields. For example B<name uuid>
9154 means to concatenate the guest name and UUID (with a literal colon character
9155 between, thus I<"foo:1234-1234-1234-1234">).
9156
9157 At the moment of writing (collectd-5.5), hostname string is limited to 62
9158 characters. In case when combination of fields exceeds 62 characters,
9159 hostname will be truncated without a warning.
9160
9161 =item B<InterfaceFormat> B<name>|B<address>
9162
9163 When the virt plugin logs interface data, it sets the name of the collected
9164 data according to this setting. The default is to use the path as provided by
9165 the hypervisor (the "dev" property of the target node), which is equal to
9166 setting B<name>.
9167
9168 B<address> means use the interface's mac address. This is useful since the
9169 interface path might change between reboots of a guest or across migrations.
9170
9171 =item B<PluginInstanceFormat> B<name|uuid|none>
9172
9173 When the virt plugin logs data, it sets the plugin_instance of the collected
9174 data according to this setting. The default is to not set the plugin_instance.
9175
9176 B<name> means use the guest's name as provided by the hypervisor.
9177 B<uuid> means use the guest's UUID.
9178
9179 You can also specify combinations of the B<name> and B<uuid> fields.
9180 For example B<name uuid> means to concatenate the guest name and UUID
9181 (with a literal colon character between, thus I<"foo:1234-1234-1234-1234">).
9182
9183 =item B<Instances> B<integer>
9184
9185 How many read instances you want to use for this plugin. The default is one,
9186 and the sensible setting is a multiple of the B<ReadThreads> value.
9187 If you are not sure, just use the default setting.
9188
9189 =item B<ExtraStats> B<string>
9190
9191 Report additional extra statistics. The default is no extra statistics, preserving
9192 the previous behaviour of the plugin. If unsure, leave the default. If enabled,
9193 allows the plugin to reported more detailed statistics about the behaviour of
9194 Virtual Machines. The argument is a space-separated list of selectors.
9195
9196 Currently supported selectors are:
9197
9198 =over 4
9199
9200 =item B<cpu_util>: report CPU utilization per domain in percentage.
9201
9202 =item B<disk>: report extra statistics like number of flush operations and total
9203 service time for read, write and flush operations. Requires libvirt API version
9204 I<0.9.5> or later.
9205
9206 =item B<disk_err>: report disk errors if any occured. Requires libvirt API version
9207 I<0.9.10> or later.
9208
9209 =item B<domain_state>: report domain state and reason in human-readable format as
9210 a notification. If libvirt API version I<0.9.2> or later is available, domain
9211 reason will be included in notification.
9212
9213 =item B<fs_info>: report file system information as a notification. Requires
9214 libvirt API version I<1.2.11> or later. Can be collected only if I<Guest Agent>
9215 is installed and configured inside VM. Make sure that installed I<Guest Agent>
9216 version supports retrieving  file system information.
9217
9218 =item B<job_stats_background>: report statistics about progress of a background
9219 job on a domain. Only one type of job statistics can be collected at the same time.
9220 Requires libvirt API version I<1.2.9> or later.
9221
9222 =item B<job_stats_completed>: report statistics about a recently completed job on
9223 a domain. Only one type of job statistics can be collected at the same time.
9224 Requires libvirt API version I<1.2.9> or later.
9225
9226 =item B<pcpu>: report the physical user/system cpu time consumed by the hypervisor, per-vm.
9227 Requires libvirt API version I<0.9.11> or later.
9228
9229 =item B<perf>: report performance monitoring events. To collect performance
9230 metrics they must be enabled for domain and supported by the platform. Requires
9231 libvirt API version I<1.3.3> or later.
9232 B<Note>: I<perf> metrics can't be collected if I<intel_rdt> plugin is enabled.
9233
9234 =item B<vcpupin>: report pinning of domain VCPUs to host physical CPUs.
9235
9236 =back
9237
9238 =item B<PersistentNotification> B<true>|B<false>
9239 Override default configuration to only send notifications when there is a change
9240 in the lifecycle state of a domain. When set to true notifications will be sent
9241 for every read cycle. Default is false. Does not affect the stats being
9242 dispatched.
9243
9244 =back
9245
9246 =head2 Plugin C<vmem>
9247
9248 The C<vmem> plugin collects information about the usage of virtual memory.
9249 Since the statistics provided by the Linux kernel are very detailed, they are
9250 collected very detailed. However, to get all the details, you have to switch
9251 them on manually. Most people just want an overview over, such as the number of
9252 pages read from swap space.
9253
9254 =over 4
9255
9256 =item B<Verbose> B<true>|B<false>
9257
9258 Enables verbose collection of information. This will start collecting page
9259 "actions", e.E<nbsp>g. page allocations, (de)activations, steals and so on.
9260 Part of these statistics are collected on a "per zone" basis.
9261
9262 =back
9263
9264 =head2 Plugin C<vserver>
9265
9266 This plugin doesn't have any options. B<VServer> support is only available for
9267 Linux. It cannot yet be found in a vanilla kernel, though. To make use of this
9268 plugin you need a kernel that has B<VServer> support built in, i.E<nbsp>e. you
9269 need to apply the patches and compile your own kernel, which will then provide
9270 the F</proc/virtual> filesystem that is required by this plugin.
9271
9272 The B<VServer> homepage can be found at L<http://linux-vserver.org/>.
9273
9274 B<Note>: The traffic collected by this plugin accounts for the amount of
9275 traffic passing a socket which might be a lot less than the actual on-wire
9276 traffic (e.E<nbsp>g. due to headers and retransmission). If you want to
9277 collect on-wire traffic you could, for example, use the logging facilities of
9278 iptables to feed data for the guest IPs into the iptables plugin.
9279
9280 =head2 Plugin C<write_graphite>
9281
9282 The C<write_graphite> plugin writes data to I<Graphite>, an open-source metrics
9283 storage and graphing project. The plugin connects to I<Carbon>, the data layer
9284 of I<Graphite>, via I<TCP> or I<UDP> and sends data via the "line based"
9285 protocol (per default using portE<nbsp>2003). The data will be sent in blocks
9286 of at most 1428 bytes to minimize the number of network packets.
9287
9288 Synopsis:
9289
9290  <Plugin write_graphite>
9291    <Node "example">
9292      Host "localhost"
9293      Port "2003"
9294      Protocol "tcp"
9295      LogSendErrors true
9296      Prefix "collectd"
9297      UseTags false
9298    </Node>
9299  </Plugin>
9300
9301 The configuration consists of one or more E<lt>B<Node>E<nbsp>I<Name>E<gt>
9302 blocks. Inside the B<Node> blocks, the following options are recognized:
9303
9304 =over 4
9305
9306 =item B<Host> I<Address>
9307
9308 Hostname or address to connect to. Defaults to C<localhost>.
9309
9310 =item B<Port> I<Service>
9311
9312 Service name or port number to connect to. Defaults to C<2003>.
9313
9314 =item B<Protocol> I<String>
9315
9316 Protocol to use when connecting to I<Graphite>. Defaults to C<tcp>.
9317
9318 =item B<ReconnectInterval> I<Seconds>
9319
9320 When set to non-zero, forces the connection to the Graphite backend to be
9321 closed and re-opend periodically. This behavior is desirable in environments
9322 where the connection to the Graphite backend is done through load balancers,
9323 for example. When set to zero, the default, the connetion is kept open for as
9324 long as possible.
9325
9326 =item B<LogSendErrors> B<false>|B<true>
9327
9328 If set to B<true> (the default), logs errors when sending data to I<Graphite>.
9329 If set to B<false>, it will not log the errors. This is especially useful when
9330 using Protocol UDP since many times we want to use the "fire-and-forget"
9331 approach and logging errors fills syslog with unneeded messages.
9332
9333 =item B<Prefix> I<String>
9334
9335 When B<UseTags> is I<false>, B<Prefix> value is added in front of the host name.
9336 When B<UseTags> is I<true>, B<Prefix> value is added in front of series name.
9337
9338 Dots and whitespace are I<not> escaped in this string (see B<EscapeCharacter>
9339 below).
9340
9341 =item B<Postfix> I<String>
9342
9343 When B<UseTags> is I<false>, B<Postfix> value appended to the host name.
9344 When B<UseTags> is I<true>, B<Postgix> value appended to the end of series name
9345 (before the first ; that separates the name from the tags).
9346
9347 Dots and whitespace are I<not> escaped in this string (see B<EscapeCharacter>
9348 below).
9349
9350 =item B<EscapeCharacter> I<Char>
9351
9352 I<Carbon> uses the dot (C<.>) as escape character and doesn't allow whitespace
9353 in the identifier. The B<EscapeCharacter> option determines which character
9354 dots, whitespace and control characters are replaced with. Defaults to
9355 underscore (C<_>).
9356
9357 =item B<StoreRates> B<false>|B<true>
9358
9359 If set to B<true> (the default), convert counter values to rates. If set to
9360 B<false> counter values are stored as is, i.E<nbsp>e. as an increasing integer
9361 number.
9362
9363 =item B<SeparateInstances> B<false>|B<true>
9364
9365 If set to B<true>, the plugin instance and type instance will be in their own
9366 path component, for example C<host.cpu.0.cpu.idle>. If set to B<false> (the
9367 default), the plugin and plugin instance (and likewise the type and type
9368 instance) are put into one component, for example C<host.cpu-0.cpu-idle>.
9369
9370 Option value is not used when B<UseTags> is I<true>.
9371
9372 =item B<AlwaysAppendDS> B<false>|B<true>
9373
9374 If set to B<true>, append the name of the I<Data Source> (DS) to the "metric"
9375 identifier. If set to B<false> (the default), this is only done when there is
9376 more than one DS.
9377
9378 =item B<PreserveSeparator> B<false>|B<true>
9379
9380 If set to B<false> (the default) the C<.> (dot) character is replaced with
9381 I<EscapeCharacter>. Otherwise, if set to B<true>, the C<.> (dot) character
9382 is preserved, i.e. passed through.
9383
9384 Option value is not used when B<UseTags> is I<true>.
9385
9386 =item B<DropDuplicateFields> B<false>|B<true>
9387
9388 If set to B<true>, detect and remove duplicate components in Graphite metric
9389 names. For example, the metric name  C<host.load.load.shortterm> will
9390 be shortened to C<host.load.shortterm>.
9391
9392 =item B<UseTags> B<false>|B<true>
9393
9394 If set to B<true>, Graphite metric names will be generated as tagged series.
9395 This allows for much more flexibility than the traditional hierarchical layout.
9396
9397 Example:
9398 C<test.single;host=example.com;plugin=test;plugin_instance=foo;type=single;type_instance=bar>
9399
9400 You can use B<Postfix> option to add more tags by specifying it like
9401 C<;tag1=value1;tag2=value2>. Note what tagging support was added since Graphite
9402 version 1.1.x.
9403
9404 If set to B<true>, the B<SeparateInstances> and B<PreserveSeparator> settings
9405 are not used.
9406
9407 Default value: B<false>.
9408
9409 =back
9410
9411 =head2 Plugin C<write_log>
9412
9413 The C<write_log> plugin writes metrics as INFO log messages.
9414
9415 This plugin supports two output formats: I<Graphite> and I<JSON>.
9416
9417 Synopsis:
9418
9419  <Plugin write_log>
9420    Format Graphite
9421  </Plugin>
9422
9423 =over 4
9424
9425 =item B<Format> I<Format>
9426
9427 The output format to use. Can be one of C<Graphite> or C<JSON>.
9428
9429 =back
9430
9431 =head2 Plugin C<write_tsdb>
9432
9433 The C<write_tsdb> plugin writes data to I<OpenTSDB>, a scalable open-source
9434 time series database. The plugin connects to a I<TSD>, a masterless, no shared
9435 state daemon that ingests metrics and stores them in HBase. The plugin uses
9436 I<TCP> over the "line based" protocol with a default port 4242. The data will
9437 be sent in blocks of at most 1428 bytes to minimize the number of network
9438 packets.
9439
9440 Synopsis:
9441
9442  <Plugin write_tsdb>
9443    ResolveInterval 60
9444    ResolveJitter 60
9445    <Node "example">
9446      Host "tsd-1.my.domain"
9447      Port "4242"
9448      HostTags "status=production"
9449    </Node>
9450  </Plugin>
9451
9452 The configuration consists of one or more E<lt>B<Node>E<nbsp>I<Name>E<gt>
9453 blocks and global directives.
9454
9455 Global directives are:
9456
9457 =over 4
9458
9459 =item B<ResolveInterval> I<seconds>
9460
9461 =item B<ResolveJitter> I<seconds>
9462
9463 When I<collectd> connects to a TSDB node, it will request the hostname from
9464 DNS. This can become a problem if the TSDB node is unavailable or badly
9465 configured because collectd will request DNS in order to reconnect for every
9466 metric, which can flood your DNS. So you can cache the last value for
9467 I<ResolveInterval> seconds.
9468 Defaults to the I<Interval> of the I<write_tsdb plugin>, e.g. 10E<nbsp>seconds.
9469
9470 You can also define a jitter, a random interval to wait in addition to
9471 I<ResolveInterval>. This prevents all your collectd servers to resolve the
9472 hostname at the same time when the connection fails.
9473 Defaults to the I<Interval> of the I<write_tsdb plugin>, e.g. 10E<nbsp>seconds.
9474
9475 B<Note:> If the DNS resolution has already been successful when the socket
9476 closes, the plugin will try to reconnect immediately with the cached
9477 information. DNS is queried only when the socket is closed for a longer than
9478 I<ResolveInterval> + I<ResolveJitter> seconds.
9479
9480 =back
9481
9482 Inside the B<Node> blocks, the following options are recognized:
9483
9484 =over 4
9485
9486 =item B<Host> I<Address>
9487
9488 Hostname or address to connect to. Defaults to C<localhost>.
9489
9490 =item B<Port> I<Service>
9491
9492 Service name or port number to connect to. Defaults to C<4242>.
9493
9494
9495 =item B<HostTags> I<String>
9496
9497 When set, I<HostTags> is added to the end of the metric. It is intended to be
9498 used for name=value pairs that the TSD will tag the metric with. Dots and
9499 whitespace are I<not> escaped in this string.
9500
9501 =item B<StoreRates> B<false>|B<true>
9502
9503 If set to B<true>, convert counter values to rates. If set to B<false>
9504 (the default) counter values are stored as is, as an increasing
9505 integer number.
9506
9507 =item B<AlwaysAppendDS> B<false>|B<true>
9508
9509 If set the B<true>, append the name of the I<Data Source> (DS) to the "metric"
9510 identifier. If set to B<false> (the default), this is only done when there is
9511 more than one DS.
9512
9513 =back
9514
9515 =head2 Plugin C<write_mongodb>
9516
9517 The I<write_mongodb plugin> will send values to I<MongoDB>, a schema-less
9518 NoSQL database.
9519
9520 B<Synopsis:>
9521
9522  <Plugin "write_mongodb">
9523    <Node "default">
9524      Host "localhost"
9525      Port "27017"
9526      Timeout 1000
9527      StoreRates true
9528    </Node>
9529  </Plugin>
9530
9531 The plugin can send values to multiple instances of I<MongoDB> by specifying
9532 one B<Node> block for each instance. Within the B<Node> blocks, the following
9533 options are available:
9534
9535 =over 4
9536
9537 =item B<Host> I<Address>
9538
9539 Hostname or address to connect to. Defaults to C<localhost>.
9540
9541 =item B<Port> I<Service>
9542
9543 Service name or port number to connect to. Defaults to C<27017>.
9544
9545 =item B<Timeout> I<Milliseconds>
9546
9547 Set the timeout for each operation on I<MongoDB> to I<Timeout> milliseconds.
9548 Setting this option to zero means no timeout, which is the default.
9549
9550 =item B<StoreRates> B<false>|B<true>
9551
9552 If set to B<true> (the default), convert counter values to rates. If set to
9553 B<false> counter values are stored as is, i.e. as an increasing integer
9554 number.
9555
9556 =item B<Database> I<Database>
9557
9558 =item B<User> I<User>
9559
9560 =item B<Password> I<Password>
9561
9562 Sets the information used when authenticating to a I<MongoDB> database. The
9563 fields are optional (in which case no authentication is attempted), but if you
9564 want to use authentication all three fields must be set.
9565
9566 =back
9567
9568 =head2 Plugin C<write_prometheus>
9569
9570 The I<write_prometheus plugin> implements a tiny webserver that can be scraped
9571 using I<Prometheus>.
9572
9573 B<Options:>
9574
9575 =over 4
9576
9577 =item B<Port> I<Port>
9578
9579 Port the embedded webserver should listen on. Defaults to B<9103>.
9580
9581 =item B<StalenessDelta> I<Seconds>
9582
9583 Time in seconds after which I<Prometheus> considers a metric "stale" if it
9584 hasn't seen any update for it. This value must match the setting in Prometheus.
9585 It defaults to B<300> seconds (5 minutes), same as Prometheus.
9586
9587 B<Background:>
9588
9589 I<Prometheus> has a global setting, C<StalenessDelta>, which controls after
9590 which time a metric without updates is considered "stale". This setting
9591 effectively puts an upper limit on the interval in which metrics are reported.
9592
9593 When the I<write_prometheus plugin> encounters a metric with an interval
9594 exceeding this limit, it will inform you, the user, and provide the metric to
9595 I<Prometheus> B<without> a timestamp. That causes I<Prometheus> to consider the
9596 metric "fresh" each time it is scraped, with the time of the scrape being
9597 considered the time of the update. The result is that there appear more
9598 datapoints in I<Prometheus> than were actually created, but at least the metric
9599 doesn't disappear periodically.
9600
9601 =back
9602
9603 =head2 Plugin C<write_http>
9604
9605 This output plugin submits values to an HTTP server using POST requests and
9606 encoding metrics with JSON or using the C<PUTVAL> command described in
9607 L<collectd-unixsock(5)>.
9608
9609 Synopsis:
9610
9611  <Plugin "write_http">
9612    <Node "example">
9613      URL "http://example.com/post-collectd"
9614      User "collectd"
9615      Password "weCh3ik0"
9616      Format JSON
9617    </Node>
9618  </Plugin>
9619
9620 The plugin can send values to multiple HTTP servers by specifying one
9621 E<lt>B<Node>E<nbsp>I<Name>E<gt> block for each server. Within each B<Node>
9622 block, the following options are available:
9623
9624 =over 4
9625
9626 =item B<URL> I<URL>
9627
9628 URL to which the values are submitted to. Mandatory.
9629
9630 =item B<User> I<Username>
9631
9632 Optional user name needed for authentication.
9633
9634 =item B<Password> I<Password>
9635
9636 Optional password needed for authentication.
9637
9638 =item B<VerifyPeer> B<true>|B<false>
9639
9640 Enable or disable peer SSL certificate verification. See
9641 L<http://curl.haxx.se/docs/sslcerts.html> for details. Enabled by default.
9642
9643 =item B<VerifyHost> B<true|false>
9644
9645 Enable or disable peer host name verification. If enabled, the plugin checks if
9646 the C<Common Name> or a C<Subject Alternate Name> field of the SSL certificate
9647 matches the host name provided by the B<URL> option. If this identity check
9648 fails, the connection is aborted. Obviously, only works when connecting to a
9649 SSL enabled server. Enabled by default.
9650
9651 =item B<CACert> I<File>
9652
9653 File that holds one or more SSL certificates. If you want to use HTTPS you will
9654 possibly need this option. What CA certificates come bundled with C<libcurl>
9655 and are checked by default depends on the distribution you use.
9656
9657 =item B<CAPath> I<Directory>
9658
9659 Directory holding one or more CA certificate files. You can use this if for
9660 some reason all the needed CA certificates aren't in the same file and can't be
9661 pointed to using the B<CACert> option. Requires C<libcurl> to be built against
9662 OpenSSL.
9663
9664 =item B<ClientKey> I<File>
9665
9666 File that holds the private key in PEM format to be used for certificate-based
9667 authentication.
9668
9669 =item B<ClientCert> I<File>
9670
9671 File that holds the SSL certificate to be used for certificate-based
9672 authentication.
9673
9674 =item B<ClientKeyPass> I<Password>
9675
9676 Password required to load the private key in B<ClientKey>.
9677
9678 =item B<Header> I<Header>
9679
9680 A HTTP header to add to the request.  Multiple headers are added if this option is specified more than once.  Example:
9681
9682   Header "X-Custom-Header: custom_value"
9683
9684 =item B<SSLVersion> B<SSLv2>|B<SSLv3>|B<TLSv1>|B<TLSv1_0>|B<TLSv1_1>|B<TLSv1_2>
9685
9686 Define which SSL protocol version must be used. By default C<libcurl> will
9687 attempt to figure out the remote SSL protocol version. See
9688 L<curl_easy_setopt(3)> for more details.
9689
9690 =item B<Format> B<Command>|B<JSON>|B<KAIROSDB>
9691
9692 Format of the output to generate. If set to B<Command>, will create output that
9693 is understood by the I<Exec> and I<UnixSock> plugins. When set to B<JSON>, will
9694 create output in the I<JavaScript Object Notation> (JSON). When set to KAIROSDB
9695 , will create output in the KairosDB format.
9696
9697 Defaults to B<Command>.
9698
9699 =item B<Attribute> I<String> I<String>
9700
9701 Only available for the KAIROSDB output format.
9702
9703 Consider the two given strings to be the key and value of an additional tag for
9704 each metric being sent out.
9705
9706 You can add multiple B<Attribute>.
9707
9708 =item B<TTL> I<Int>
9709
9710 Only available for the KAIROSDB output format.
9711
9712 Sets the Cassandra ttl for the data points.
9713
9714 Please refer to L<http://kairosdb.github.io/docs/build/html/restapi/AddDataPoints.html?highlight=ttl>
9715
9716 =item B<Prefix> I<String>
9717
9718 Only available for the KAIROSDB output format.
9719
9720 Sets the metrics prefix I<string>. Defaults to I<collectd>.
9721
9722 =item B<Metrics> B<true>|B<false>
9723
9724 Controls whether I<metrics> are POSTed to this location. Defaults to B<true>.
9725
9726 =item B<Notifications> B<false>|B<true>
9727
9728 Controls whether I<notifications> are POSTed to this location. Defaults to B<false>.
9729
9730 =item B<StoreRates> B<true|false>
9731
9732 If set to B<true>, convert counter values to rates. If set to B<false> (the
9733 default) counter values are stored as is, i.e. as an increasing integer number.
9734
9735 =item B<BufferSize> I<Bytes>
9736
9737 Sets the send buffer size to I<Bytes>. By increasing this buffer, less HTTP
9738 requests will be generated, but more metrics will be batched / metrics are
9739 cached for longer before being sent, introducing additional delay until they
9740 are available on the server side. I<Bytes> must be at least 1024 and cannot
9741 exceed the size of an C<int>, i.e. 2E<nbsp>GByte.
9742 Defaults to C<4096>.
9743
9744 =item B<LowSpeedLimit> I<Bytes per Second>
9745
9746 Sets the minimal transfer rate in I<Bytes per Second> below which the
9747 connection with the HTTP server will be considered too slow and aborted. All
9748 the data submitted over this connection will probably be lost. Defaults to 0,
9749 which means no minimum transfer rate is enforced.
9750
9751 =item B<Timeout> I<Timeout>
9752
9753 Sets the maximum time in milliseconds given for HTTP POST operations to
9754 complete. When this limit is reached, the POST operation will be aborted, and
9755 all the data in the current send buffer will probably be lost. Defaults to 0,
9756 which means the connection never times out.
9757
9758 =item B<LogHttpError> B<false>|B<true>
9759
9760 Enables printing of HTTP error code to log. Turned off by default.
9761
9762 The C<write_http> plugin regularly submits the collected values to the HTTP
9763 server. How frequently this happens depends on how much data you are collecting
9764 and the size of B<BufferSize>. The optimal value to set B<Timeout> to is
9765 slightly below this interval, which you can estimate by monitoring the network
9766 traffic between collectd and the HTTP server.
9767
9768 =back
9769
9770 =head2 Plugin C<write_kafka>
9771
9772 The I<write_kafka plugin> will send values to a I<Kafka> topic, a distributed
9773 queue.
9774 Synopsis:
9775
9776  <Plugin "write_kafka">
9777    Property "metadata.broker.list" "broker1:9092,broker2:9092"
9778    <Topic "collectd">
9779      Format JSON
9780    </Topic>
9781  </Plugin>
9782
9783 The following options are understood by the I<write_kafka plugin>:
9784
9785 =over 4
9786
9787 =item E<lt>B<Topic> I<Name>E<gt>
9788
9789 The plugin's configuration consists of one or more B<Topic> blocks. Each block
9790 is given a unique I<Name> and specifies one kafka producer.
9791 Inside the B<Topic> block, the following per-topic options are
9792 understood:
9793
9794 =over 4
9795
9796 =item B<Property> I<String> I<String>
9797
9798 Configure the named property for the current topic. Properties are
9799 forwarded to the kafka producer library B<librdkafka>.
9800
9801 =item B<Key> I<String>
9802
9803 Use the specified string as a partitioning key for the topic. Kafka breaks
9804 topic into partitions and guarantees that for a given topology, the same
9805 consumer will be used for a specific key. The special (case insensitive)
9806 string B<Random> can be used to specify that an arbitrary partition should
9807 be used.
9808
9809 =item B<Format> B<Command>|B<JSON>|B<Graphite>
9810
9811 Selects the format in which messages are sent to the broker. If set to
9812 B<Command> (the default), values are sent as C<PUTVAL> commands which are
9813 identical to the syntax used by the I<Exec> and I<UnixSock plugins>.
9814
9815 If set to B<JSON>, the values are encoded in the I<JavaScript Object Notation>,
9816 an easy and straight forward exchange format.
9817
9818 If set to B<Graphite>, values are encoded in the I<Graphite> format, which is
9819 C<E<lt>metricE<gt> E<lt>valueE<gt> E<lt>timestampE<gt>\n>.
9820
9821 =item B<StoreRates> B<true>|B<false>
9822
9823 Determines whether or not C<COUNTER>, C<DERIVE> and C<ABSOLUTE> data sources
9824 are converted to a I<rate> (i.e. a C<GAUGE> value). If set to B<false> (the
9825 default), no conversion is performed. Otherwise the conversion is performed
9826 using the internal value cache.
9827
9828 Please note that currently this option is only used if the B<Format> option has
9829 been set to B<JSON>.
9830
9831 =item B<GraphitePrefix> (B<Format>=I<Graphite> only)
9832
9833 A prefix can be added in the metric name when outputting in the I<Graphite>
9834 format.
9835
9836 When B<GraphiteUseTags> is I<false>, prefix is added before the I<Host> name.
9837 Metric name will be
9838 C<E<lt>prefixE<gt>E<lt>hostE<gt>E<lt>postfixE<gt>E<lt>pluginE<gt>E<lt>typeE<gt>E<lt>nameE<gt>>
9839
9840 When B<GraphiteUseTags> is I<true>, prefix is added in front of series name.
9841
9842 =item B<GraphitePostfix> (B<Format>=I<Graphite> only)
9843
9844 A postfix can be added in the metric name when outputting in the I<Graphite>
9845 format.
9846
9847 When B<GraphiteUseTags> is I<false>, postfix is added after the I<Host> name.
9848 Metric name will be
9849 C<E<lt>prefixE<gt>E<lt>hostE<gt>E<lt>postfixE<gt>E<lt>pluginE<gt>E<lt>typeE<gt>E<lt>nameE<gt>>
9850
9851 When B<GraphiteUseTags> is I<true>, prefix value appended to the end of series
9852 name (before the first ; that separates the name from the tags).
9853
9854 =item B<GraphiteEscapeChar> (B<Format>=I<Graphite> only)
9855
9856 Specify a character to replace dots (.) in the host part of the metric name.
9857 In I<Graphite> metric name, dots are used as separators between different
9858 metric parts (host, plugin, type).
9859 Default is C<_> (I<Underscore>).
9860
9861 =item B<GraphiteSeparateInstances> B<false>|B<true>
9862
9863 If set to B<true>, the plugin instance and type instance will be in their own
9864 path component, for example C<host.cpu.0.cpu.idle>. If set to B<false> (the
9865 default), the plugin and plugin instance (and likewise the type and type
9866 instance) are put into one component, for example C<host.cpu-0.cpu-idle>.
9867
9868 Option value is not used when B<GraphiteUseTags> is I<true>.
9869
9870 =item B<GraphiteAlwaysAppendDS> B<true>|B<false>
9871
9872 If set to B<true>, append the name of the I<Data Source> (DS) to the "metric"
9873 identifier. If set to B<false> (the default), this is only done when there is
9874 more than one DS.
9875
9876 =item B<GraphitePreserveSeparator> B<false>|B<true>
9877
9878 If set to B<false> (the default) the C<.> (dot) character is replaced with
9879 I<GraphiteEscapeChar>. Otherwise, if set to B<true>, the C<.> (dot) character
9880 is preserved, i.e. passed through.
9881
9882 Option value is not used when B<GraphiteUseTags> is I<true>.
9883
9884 =item B<GraphiteUseTags> B<false>|B<true>
9885
9886 If set to B<true> Graphite metric names will be generated as tagged series.
9887
9888 Default value: B<false>.
9889
9890 =item B<StoreRates> B<true>|B<false>
9891
9892 If set to B<true> (the default), convert counter values to rates. If set to
9893 B<false> counter values are stored as is, i.e. as an increasing integer number.
9894
9895 This will be reflected in the C<ds_type> tag: If B<StoreRates> is enabled,
9896 converted values will have "rate" appended to the data source type, e.g.
9897 C<ds_type:derive:rate>.
9898
9899 =back
9900
9901 =item B<Property> I<String> I<String>
9902
9903 Configure the kafka producer through properties, you almost always will
9904 want to set B<metadata.broker.list> to your Kafka broker list.
9905
9906 =back
9907
9908 =head2 Plugin C<write_redis>
9909
9910 The I<write_redis plugin> submits values to I<Redis>, a data structure server.
9911
9912 Synopsis:
9913
9914   <Plugin "write_redis">
9915     <Node "example">
9916         Host "localhost"
9917         Port "6379"
9918         Timeout 1000
9919         Prefix "collectd/"
9920         Database 1
9921         MaxSetSize -1
9922         MaxSetDuration -1
9923         StoreRates true
9924     </Node>
9925   </Plugin>
9926
9927 Values are submitted to I<Sorted Sets>, using the metric name as the key, and
9928 the timestamp as the score. Retrieving a date range can then be done using the
9929 C<ZRANGEBYSCORE> I<Redis> command. Additionally, all the identifiers of these
9930 I<Sorted Sets> are kept in a I<Set> called C<collectd/values> (or
9931 C<${prefix}/values> if the B<Prefix> option was specified) and can be retrieved
9932 using the C<SMEMBERS> I<Redis> command. You can specify the database to use
9933 with the B<Database> parameter (default is C<0>). See
9934 L<http://redis.io/commands#sorted_set> and L<http://redis.io/commands#set> for
9935 details.
9936
9937 The information shown in the synopsis above is the I<default configuration>
9938 which is used by the plugin if no configuration is present.
9939
9940 The plugin can send values to multiple instances of I<Redis> by specifying
9941 one B<Node> block for each instance. Within the B<Node> blocks, the following
9942 options are available:
9943
9944 =over 4
9945
9946 =item B<Node> I<Nodename>
9947
9948 The B<Node> block identifies a new I<Redis> node, that is a new I<Redis>
9949 instance running on a specified host and port. The node name is a
9950 canonical identifier which is used as I<plugin instance>. It is limited to
9951 51E<nbsp>characters in length.
9952
9953 =item B<Host> I<Hostname>
9954
9955 The B<Host> option is the hostname or IP-address where the I<Redis> instance is
9956 running on.
9957
9958 =item B<Port> I<Port>
9959
9960 The B<Port> option is the TCP port on which the Redis instance accepts
9961 connections. Either a service name of a port number may be given. Please note
9962 that numerical port numbers must be given as a string, too.
9963
9964 =item B<Timeout> I<Milliseconds>
9965
9966 The B<Timeout> option sets the socket connection timeout, in milliseconds.
9967
9968 =item B<Prefix> I<Prefix>
9969
9970 Prefix used when constructing the name of the I<Sorted Sets> and the I<Set>
9971 containing all metrics. Defaults to C<collectd/>, so metrics will have names
9972 like C<collectd/cpu-0/cpu-user>. When setting this to something different, it
9973 is recommended but not required to include a trailing slash in I<Prefix>.
9974
9975 =item B<Database> I<Index>
9976
9977 This index selects the redis database to use for writing operations. Defaults
9978 to C<0>.
9979
9980 =item B<MaxSetSize> I<Items>
9981
9982 The B<MaxSetSize> option limits the number of items that the I<Sorted Sets> can
9983 hold. Negative values for I<Items> sets no limit, which is the default behavior.
9984
9985 =item B<MaxSetDuration> I<Seconds>
9986
9987 The B<MaxSetDuration> option limits the duration of items that the
9988 I<Sorted Sets> can hold. Negative values for I<Items> sets no duration, which
9989 is the default behavior.
9990
9991 =item B<StoreRates> B<true>|B<false>
9992
9993 If set to B<true> (the default), convert counter values to rates. If set to
9994 B<false> counter values are stored as is, i.e. as an increasing integer number.
9995
9996 =back
9997
9998 =head2 Plugin C<write_riemann>
9999
10000 The I<write_riemann plugin> will send values to I<Riemann>, a powerful stream
10001 aggregation and monitoring system. The plugin sends I<Protobuf> encoded data to
10002 I<Riemann> using UDP packets.
10003
10004 Synopsis:
10005
10006  <Plugin "write_riemann">
10007    <Node "example">
10008      Host "localhost"
10009      Port "5555"
10010      Protocol UDP
10011      StoreRates true
10012      AlwaysAppendDS false
10013      TTLFactor 2.0
10014    </Node>
10015    Tag "foobar"
10016    Attribute "foo" "bar"
10017  </Plugin>
10018
10019 The following options are understood by the I<write_riemann plugin>:
10020
10021 =over 4
10022
10023 =item E<lt>B<Node> I<Name>E<gt>
10024
10025 The plugin's configuration consists of one or more B<Node> blocks. Each block
10026 is given a unique I<Name> and specifies one connection to an instance of
10027 I<Riemann>. Indise the B<Node> block, the following per-connection options are
10028 understood:
10029
10030 =over 4
10031
10032 =item B<Host> I<Address>
10033
10034 Hostname or address to connect to. Defaults to C<localhost>.
10035
10036 =item B<Port> I<Service>
10037
10038 Service name or port number to connect to. Defaults to C<5555>.
10039
10040 =item B<Protocol> B<UDP>|B<TCP>|B<TLS>
10041
10042 Specify the protocol to use when communicating with I<Riemann>. Defaults to
10043 B<TCP>.
10044
10045 =item B<TLSCertFile> I<Path>
10046
10047 When using the B<TLS> protocol, path to a PEM certificate to present
10048 to remote host.
10049
10050 =item B<TLSCAFile> I<Path>
10051
10052 When using the B<TLS> protocol, path to a PEM CA certificate to
10053 use to validate the remote hosts's identity.
10054
10055 =item B<TLSKeyFile> I<Path>
10056
10057 When using the B<TLS> protocol, path to a PEM private key associated
10058 with the certificate defined by B<TLSCertFile>.
10059
10060 =item B<Batch> B<true>|B<false>
10061
10062 If set to B<true> and B<Protocol> is set to B<TCP>,
10063 events will be batched in memory and flushed at
10064 regular intervals or when B<BatchMaxSize> is exceeded.
10065
10066 Notifications are not batched and sent as soon as possible.
10067
10068 When enabled, it can occur that events get processed by the Riemann server
10069 close to or after their expiration time. Tune the B<TTLFactor> and
10070 B<BatchMaxSize> settings according to the amount of values collected, if this
10071 is an issue.
10072
10073 Defaults to true
10074
10075 =item B<BatchMaxSize> I<size>
10076
10077 Maximum payload size for a riemann packet. Defaults to 8192
10078
10079 =item B<BatchFlushTimeout> I<seconds>
10080
10081 Maximum amount of seconds to wait in between to batch flushes.
10082 No timeout by default.
10083
10084 =item B<StoreRates> B<true>|B<false>
10085
10086 If set to B<true> (the default), convert counter values to rates. If set to
10087 B<false> counter values are stored as is, i.e. as an increasing integer number.
10088
10089 This will be reflected in the C<ds_type> tag: If B<StoreRates> is enabled,
10090 converted values will have "rate" appended to the data source type, e.g.
10091 C<ds_type:derive:rate>.
10092
10093 =item B<AlwaysAppendDS> B<false>|B<true>
10094
10095 If set to B<true>, append the name of the I<Data Source> (DS) to the
10096 "service", i.e. the field that, together with the "host" field, uniquely
10097 identifies a metric in I<Riemann>. If set to B<false> (the default), this is
10098 only done when there is more than one DS.
10099
10100 =item B<TTLFactor> I<Factor>
10101
10102 I<Riemann> events have a I<Time to Live> (TTL) which specifies how long each
10103 event is considered active. I<collectd> populates this field based on the
10104 metrics interval setting. This setting controls the factor with which the
10105 interval is multiplied to set the TTL. The default value is B<2.0>. Unless you
10106 know exactly what you're doing, you should only increase this setting from its
10107 default value.
10108
10109 =item B<Notifications> B<false>|B<true>
10110
10111 If set to B<true>, create riemann events for notifications. This is B<true>
10112 by default. When processing thresholds from write_riemann, it might prove
10113 useful to avoid getting notification events.
10114
10115 =item B<CheckThresholds> B<false>|B<true>
10116
10117 If set to B<true>, attach state to events based on thresholds defined
10118 in the B<Threshold> plugin. Defaults to B<false>.
10119
10120 =item B<EventServicePrefix> I<String>
10121
10122 Add the given string as a prefix to the event service name.
10123 If B<EventServicePrefix> not set or set to an empty string (""),
10124 no prefix will be used.
10125
10126 =back
10127
10128 =item B<Tag> I<String>
10129
10130 Add the given string as an additional tag to the metric being sent to
10131 I<Riemann>.
10132
10133 =item B<Attribute> I<String> I<String>
10134
10135 Consider the two given strings to be the key and value of an additional
10136 attribute for each metric being sent out to I<Riemann>.
10137
10138 =back
10139
10140 =head2 Plugin C<write_sensu>
10141
10142 The I<write_sensu plugin> will send values to I<Sensu>, a powerful stream
10143 aggregation and monitoring system. The plugin sends I<JSON> encoded data to
10144 a local I<Sensu> client using a TCP socket.
10145
10146 At the moment, the I<write_sensu plugin> does not send over a collectd_host
10147 parameter so it is not possible to use one collectd instance as a gateway for
10148 others. Each collectd host must pair with one I<Sensu> client.
10149
10150 Synopsis:
10151
10152  <Plugin "write_sensu">
10153    <Node "example">
10154      Host "localhost"
10155      Port "3030"
10156      StoreRates true
10157      AlwaysAppendDS false
10158      MetricHandler "influx"
10159      MetricHandler "default"
10160      NotificationHandler "flapjack"
10161      NotificationHandler "howling_monkey"
10162      Notifications true
10163    </Node>
10164    Tag "foobar"
10165    Attribute "foo" "bar"
10166  </Plugin>
10167
10168 The following options are understood by the I<write_sensu plugin>:
10169
10170 =over 4
10171
10172 =item E<lt>B<Node> I<Name>E<gt>
10173
10174 The plugin's configuration consists of one or more B<Node> blocks. Each block
10175 is given a unique I<Name> and specifies one connection to an instance of
10176 I<Sensu>. Inside the B<Node> block, the following per-connection options are
10177 understood:
10178
10179 =over 4
10180
10181 =item B<Host> I<Address>
10182
10183 Hostname or address to connect to. Defaults to C<localhost>.
10184
10185 =item B<Port> I<Service>
10186
10187 Service name or port number to connect to. Defaults to C<3030>.
10188
10189 =item B<StoreRates> B<true>|B<false>
10190
10191 If set to B<true> (the default), convert counter values to rates. If set to
10192 B<false> counter values are stored as is, i.e. as an increasing integer number.
10193
10194 This will be reflected in the C<collectd_data_source_type> tag: If
10195 B<StoreRates> is enabled, converted values will have "rate" appended to the
10196 data source type, e.g.  C<collectd_data_source_type:derive:rate>.
10197
10198 =item B<AlwaysAppendDS> B<false>|B<true>
10199
10200 If set the B<true>, append the name of the I<Data Source> (DS) to the
10201 "service", i.e. the field that, together with the "host" field, uniquely
10202 identifies a metric in I<Sensu>. If set to B<false> (the default), this is
10203 only done when there is more than one DS.
10204
10205 =item B<Notifications> B<false>|B<true>
10206
10207 If set to B<true>, create I<Sensu> events for notifications. This is B<false>
10208 by default. At least one of B<Notifications> or B<Metrics> should be enabled.
10209
10210 =item B<Metrics> B<false>|B<true>
10211
10212 If set to B<true>, create I<Sensu> events for metrics. This is B<false>
10213 by default. At least one of B<Notifications> or B<Metrics> should be enabled.
10214
10215
10216 =item B<Separator> I<String>
10217
10218 Sets the separator for I<Sensu> metrics name or checks. Defaults to "/".
10219
10220 =item B<MetricHandler> I<String>
10221
10222 Add a handler that will be set when metrics are sent to I<Sensu>. You can add
10223 several of them, one per line. Defaults to no handler.
10224
10225 =item B<NotificationHandler> I<String>
10226
10227 Add a handler that will be set when notifications are sent to I<Sensu>. You can
10228 add several of them, one per line. Defaults to no handler.
10229
10230 =item B<EventServicePrefix> I<String>
10231
10232 Add the given string as a prefix to the event service name.
10233 If B<EventServicePrefix> not set or set to an empty string (""),
10234 no prefix will be used.
10235
10236 =back
10237
10238 =item B<Tag> I<String>
10239
10240 Add the given string as an additional tag to the metric being sent to
10241 I<Sensu>.
10242
10243 =item B<Attribute> I<String> I<String>
10244
10245 Consider the two given strings to be the key and value of an additional
10246 attribute for each metric being sent out to I<Sensu>.
10247
10248 =back
10249
10250 =head2 Plugin C<xencpu>
10251
10252 This plugin collects metrics of hardware CPU load for machine running Xen
10253 hypervisor. Load is calculated from 'idle time' value, provided by Xen.
10254 Result is reported using the C<percent> type, for each CPU (core).
10255
10256 This plugin doesn't have any options (yet).
10257
10258 =head2 Plugin C<zookeeper>
10259
10260 The I<zookeeper plugin> will collect statistics from a I<Zookeeper> server
10261 using the mntr command.  It requires Zookeeper 3.4.0+ and access to the
10262 client port.
10263
10264 B<Synopsis:>
10265
10266  <Plugin "zookeeper">
10267    Host "127.0.0.1"
10268    Port "2181"
10269  </Plugin>
10270
10271 =over 4
10272
10273 =item B<Host> I<Address>
10274
10275 Hostname or address to connect to. Defaults to C<localhost>.
10276
10277 =item B<Port> I<Service>
10278
10279 Service name or port number to connect to. Defaults to C<2181>.
10280
10281 =back
10282
10283 =head1 THRESHOLD CONFIGURATION
10284
10285 Starting with version C<4.3.0> collectd has support for B<monitoring>. By that
10286 we mean that the values are not only stored or sent somewhere, but that they
10287 are judged and, if a problem is recognized, acted upon. The only action
10288 collectd takes itself is to generate and dispatch a "notification". Plugins can
10289 register to receive notifications and perform appropriate further actions.
10290
10291 Since systems and what you expect them to do differ a lot, you can configure
10292 B<thresholds> for your values freely. This gives you a lot of flexibility but
10293 also a lot of responsibility.
10294
10295 Every time a value is out of range a notification is dispatched. This means
10296 that the idle percentage of your CPU needs to be less then the configured
10297 threshold only once for a notification to be generated. There's no such thing
10298 as a moving average or similar - at least not now.
10299
10300 Also, all values that match a threshold are considered to be relevant or
10301 "interesting". As a consequence collectd will issue a notification if they are
10302 not received for B<Timeout> iterations. The B<Timeout> configuration option is
10303 explained in section L<"GLOBAL OPTIONS">. If, for example, B<Timeout> is set to
10304 "2" (the default) and some hosts sends it's CPU statistics to the server every
10305 60 seconds, a notification will be dispatched after about 120 seconds. It may
10306 take a little longer because the timeout is checked only once each B<Interval>
10307 on the server.
10308
10309 When a value comes within range again or is received after it was missing, an
10310 "OKAY-notification" is dispatched.
10311
10312 Here is a configuration example to get you started. Read below for more
10313 information.
10314
10315  <Plugin threshold>
10316    <Type "foo">
10317      WarningMin    0.00
10318      WarningMax 1000.00
10319      FailureMin    0.00
10320      FailureMax 1200.00
10321      Invert false
10322      Instance "bar"
10323    </Type>
10324
10325    <Plugin "interface">
10326      Instance "eth0"
10327      <Type "if_octets">
10328        FailureMax 10000000
10329        DataSource "rx"
10330      </Type>
10331    </Plugin>
10332
10333    <Host "hostname">
10334      <Type "cpu">
10335        Instance "idle"
10336        FailureMin 10
10337      </Type>
10338
10339      <Plugin "memory">
10340        <Type "memory">
10341          Instance "cached"
10342          WarningMin 100000000
10343        </Type>
10344      </Plugin>
10345    </Host>
10346  </Plugin>
10347
10348 There are basically two types of configuration statements: The C<Host>,
10349 C<Plugin>, and C<Type> blocks select the value for which a threshold should be
10350 configured. The C<Plugin> and C<Type> blocks may be specified further using the
10351 C<Instance> option. You can combine the block by nesting the blocks, though
10352 they must be nested in the above order, i.E<nbsp>e. C<Host> may contain either
10353 C<Plugin> and C<Type> blocks, C<Plugin> may only contain C<Type> blocks and
10354 C<Type> may not contain other blocks. If multiple blocks apply to the same
10355 value the most specific block is used.
10356
10357 The other statements specify the threshold to configure. They B<must> be
10358 included in a C<Type> block. Currently the following statements are recognized:
10359
10360 =over 4
10361
10362 =item B<FailureMax> I<Value>
10363
10364 =item B<WarningMax> I<Value>
10365
10366 Sets the upper bound of acceptable values. If unset defaults to positive
10367 infinity. If a value is greater than B<FailureMax> a B<FAILURE> notification
10368 will be created. If the value is greater than B<WarningMax> but less than (or
10369 equal to) B<FailureMax> a B<WARNING> notification will be created.
10370
10371 =item B<FailureMin> I<Value>
10372
10373 =item B<WarningMin> I<Value>
10374
10375 Sets the lower bound of acceptable values. If unset defaults to negative
10376 infinity. If a value is less than B<FailureMin> a B<FAILURE> notification will
10377 be created. If the value is less than B<WarningMin> but greater than (or equal
10378 to) B<FailureMin> a B<WARNING> notification will be created.
10379
10380 =item B<DataSource> I<DSName>
10381
10382 Some data sets have more than one "data source". Interesting examples are the
10383 C<if_octets> data set, which has received (C<rx>) and sent (C<tx>) bytes and
10384 the C<disk_ops> data set, which holds C<read> and C<write> operations. The
10385 system load data set, C<load>, even has three data sources: C<shortterm>,
10386 C<midterm>, and C<longterm>.
10387
10388 Normally, all data sources are checked against a configured threshold. If this
10389 is undesirable, or if you want to specify different limits for each data
10390 source, you can use the B<DataSource> option to have a threshold apply only to
10391 one data source.
10392
10393 =item B<Invert> B<true>|B<false>
10394
10395 If set to B<true> the range of acceptable values is inverted, i.E<nbsp>e.
10396 values between B<FailureMin> and B<FailureMax> (B<WarningMin> and
10397 B<WarningMax>) are not okay. Defaults to B<false>.
10398
10399 =item B<Persist> B<true>|B<false>
10400
10401 Sets how often notifications are generated. If set to B<true> one notification
10402 will be generated for each value that is out of the acceptable range. If set to
10403 B<false> (the default) then a notification is only generated if a value is out
10404 of range but the previous value was okay.
10405
10406 This applies to missing values, too: If set to B<true> a notification about a
10407 missing value is generated once every B<Interval> seconds. If set to B<false>
10408 only one such notification is generated until the value appears again.
10409
10410 =item B<Percentage> B<true>|B<false>
10411
10412 If set to B<true>, the minimum and maximum values given are interpreted as
10413 percentage value, relative to the other data sources. This is helpful for
10414 example for the "df" type, where you may want to issue a warning when less than
10415 5E<nbsp>% of the total space is available. Defaults to B<false>.
10416
10417 =item B<Hits> I<Number>
10418
10419 Delay creating the notification until the threshold has been passed I<Number>
10420 times. When a notification has been generated, or when a subsequent value is
10421 inside the threshold, the counter is reset. If, for example, a value is
10422 collected once every 10E<nbsp>seconds and B<Hits> is set to 3, a notification
10423 will be dispatched at most once every 30E<nbsp>seconds.
10424
10425 This is useful when short bursts are not a problem. If, for example, 100% CPU
10426 usage for up to a minute is normal (and data is collected every
10427 10E<nbsp>seconds), you could set B<Hits> to B<6> to account for this.
10428
10429 =item B<Hysteresis> I<Number>
10430
10431 When set to non-zero, a hysteresis value is applied when checking minimum and
10432 maximum bounds. This is useful for values that increase slowly and fluctuate a
10433 bit while doing so. When these values come close to the threshold, they may
10434 "flap", i.e. switch between failure / warning case and okay case repeatedly.
10435
10436 If, for example, the threshold is configures as
10437
10438   WarningMax 100.0
10439   Hysteresis 1.0
10440
10441 then a I<Warning> notification is created when the value exceeds I<101> and the
10442 corresponding I<Okay> notification is only created once the value falls below
10443 I<99>, thus avoiding the "flapping".
10444
10445 =back
10446
10447 =head1 FILTER CONFIGURATION
10448
10449 Starting with collectd 4.6 there is a powerful filtering infrastructure
10450 implemented in the daemon. The concept has mostly been copied from
10451 I<ip_tables>, the packet filter infrastructure for Linux. We'll use a similar
10452 terminology, so that users that are familiar with iptables feel right at home.
10453
10454 =head2 Terminology
10455
10456 The following are the terms used in the remainder of the filter configuration
10457 documentation. For an ASCII-art schema of the mechanism, see
10458 L<"General structure"> below.
10459
10460 =over 4
10461
10462 =item B<Match>
10463
10464 A I<match> is a criteria to select specific values. Examples are, of course, the
10465 name of the value or it's current value.
10466
10467 Matches are implemented in plugins which you have to load prior to using the
10468 match. The name of such plugins starts with the "match_" prefix.
10469
10470 =item B<Target>
10471
10472 A I<target> is some action that is to be performed with data. Such actions
10473 could, for example, be to change part of the value's identifier or to ignore
10474 the value completely.
10475
10476 Some of these targets are built into the daemon, see L<"Built-in targets">
10477 below. Other targets are implemented in plugins which you have to load prior to
10478 using the target. The name of such plugins starts with the "target_" prefix.
10479
10480 =item B<Rule>
10481
10482 The combination of any number of matches and at least one target is called a
10483 I<rule>. The target actions will be performed for all values for which B<all>
10484 matches apply. If the rule does not have any matches associated with it, the
10485 target action will be performed for all values.
10486
10487 =item B<Chain>
10488
10489 A I<chain> is a list of rules and possibly default targets. The rules are tried
10490 in order and if one matches, the associated target will be called. If a value
10491 is handled by a rule, it depends on the target whether or not any subsequent
10492 rules are considered or if traversal of the chain is aborted, see
10493 L<"Flow control"> below. After all rules have been checked, the default targets
10494 will be executed.
10495
10496 =back
10497
10498 =head2 General structure
10499
10500 The following shows the resulting structure:
10501
10502  +---------+
10503  ! Chain   !
10504  +---------+
10505       !
10506       V
10507  +---------+  +---------+  +---------+  +---------+
10508  ! Rule    !->! Match   !->! Match   !->! Target  !
10509  +---------+  +---------+  +---------+  +---------+
10510       !
10511       V
10512  +---------+  +---------+  +---------+
10513  ! Rule    !->! Target  !->! Target  !
10514  +---------+  +---------+  +---------+
10515       !
10516       V
10517       :
10518       :
10519       !
10520       V
10521  +---------+  +---------+  +---------+
10522  ! Rule    !->! Match   !->! Target  !
10523  +---------+  +---------+  +---------+
10524       !
10525       V
10526  +---------+
10527  ! Default !
10528  ! Target  !
10529  +---------+
10530
10531 =head2 Flow control
10532
10533 There are four ways to control which way a value takes through the filter
10534 mechanism:
10535
10536 =over 4
10537
10538 =item B<jump>
10539
10540 The built-in B<jump> target can be used to "call" another chain, i.E<nbsp>e.
10541 process the value with another chain. When the called chain finishes, usually
10542 the next target or rule after the jump is executed.
10543
10544 =item B<stop>
10545
10546 The stop condition, signaled for example by the built-in target B<stop>, causes
10547 all processing of the value to be stopped immediately.
10548
10549 =item B<return>
10550
10551 Causes processing in the current chain to be aborted, but processing of the
10552 value generally will continue. This means that if the chain was called via
10553 B<Jump>, the next target or rule after the jump will be executed. If the chain
10554 was not called by another chain, control will be returned to the daemon and it
10555 may pass the value to another chain.
10556
10557 =item B<continue>
10558
10559 Most targets will signal the B<continue> condition, meaning that processing
10560 should continue normally. There is no special built-in target for this
10561 condition.
10562
10563 =back
10564
10565 =head2 Synopsis
10566
10567 The configuration reflects this structure directly:
10568
10569  PostCacheChain "PostCache"
10570  <Chain "PostCache">
10571    <Rule "ignore_mysql_show">
10572      <Match "regex">
10573        Plugin "^mysql$"
10574        Type "^mysql_command$"
10575        TypeInstance "^show_"
10576      </Match>
10577      <Target "stop">
10578      </Target>
10579    </Rule>
10580    <Target "write">
10581      Plugin "rrdtool"
10582    </Target>
10583  </Chain>
10584
10585 The above configuration example will ignore all values where the plugin field
10586 is "mysql", the type is "mysql_command" and the type instance begins with
10587 "show_". All other values will be sent to the C<rrdtool> write plugin via the
10588 default target of the chain. Since this chain is run after the value has been
10589 added to the cache, the MySQL C<show_*> command statistics will be available
10590 via the C<unixsock> plugin.
10591
10592 =head2 List of configuration options
10593
10594 =over 4
10595
10596 =item B<PreCacheChain> I<ChainName>
10597
10598 =item B<PostCacheChain> I<ChainName>
10599
10600 Configure the name of the "pre-cache chain" and the "post-cache chain". The
10601 argument is the name of a I<chain> that should be executed before and/or after
10602 the values have been added to the cache.
10603
10604 To understand the implications, it's important you know what is going on inside
10605 I<collectd>. The following diagram shows how values are passed from the
10606 read-plugins to the write-plugins:
10607
10608    +---------------+
10609    !  Read-Plugin  !
10610    +-------+-------+
10611            !
10612  + - - - - V - - - - +
10613  : +---------------+ :
10614  : !   Pre-Cache   ! :
10615  : !     Chain     ! :
10616  : +-------+-------+ :
10617  :         !         :
10618  :         V         :
10619  : +-------+-------+ :  +---------------+
10620  : !     Cache     !--->!  Value Cache  !
10621  : !     insert    ! :  +---+---+-------+
10622  : +-------+-------+ :      !   !
10623  :         !   ,------------'   !
10624  :         V   V     :          V
10625  : +-------+---+---+ :  +-------+-------+
10626  : !  Post-Cache   +--->! Write-Plugins !
10627  : !     Chain     ! :  +---------------+
10628  : +---------------+ :
10629  :                   :
10630  :  dispatch values  :
10631  + - - - - - - - - - +
10632
10633 After the values are passed from the "read" plugins to the dispatch functions,
10634 the pre-cache chain is run first. The values are added to the internal cache
10635 afterwards. The post-cache chain is run after the values have been added to the
10636 cache. So why is it such a huge deal if chains are run before or after the
10637 values have been added to this cache?
10638
10639 Targets that change the identifier of a value list should be executed before
10640 the values are added to the cache, so that the name in the cache matches the
10641 name that is used in the "write" plugins. The C<unixsock> plugin, too, uses
10642 this cache to receive a list of all available values. If you change the
10643 identifier after the value list has been added to the cache, this may easily
10644 lead to confusion, but it's not forbidden of course.
10645
10646 The cache is also used to convert counter values to rates. These rates are, for
10647 example, used by the C<value> match (see below). If you use the rate stored in
10648 the cache B<before> the new value is added, you will use the old, B<previous>
10649 rate. Write plugins may use this rate, too, see the C<csv> plugin, for example.
10650 The C<unixsock> plugin uses these rates too, to implement the C<GETVAL>
10651 command.
10652
10653 Last but not last, the B<stop> target makes a difference: If the pre-cache
10654 chain returns the stop condition, the value will not be added to the cache and
10655 the post-cache chain will not be run.
10656
10657 =item B<Chain> I<Name>
10658
10659 Adds a new chain with a certain name. This name can be used to refer to a
10660 specific chain, for example to jump to it.
10661
10662 Within the B<Chain> block, there can be B<Rule> blocks and B<Target> blocks.
10663
10664 =item B<Rule> [I<Name>]
10665
10666 Adds a new rule to the current chain. The name of the rule is optional and
10667 currently has no meaning for the daemon.
10668
10669 Within the B<Rule> block, there may be any number of B<Match> blocks and there
10670 must be at least one B<Target> block.
10671
10672 =item B<Match> I<Name>
10673
10674 Adds a match to a B<Rule> block. The name specifies what kind of match should
10675 be performed. Available matches depend on the plugins that have been loaded.
10676
10677 The arguments inside the B<Match> block are passed to the plugin implementing
10678 the match, so which arguments are valid here depends on the plugin being used.
10679 If you do not need any to pass any arguments to a match, you can use the
10680 shorter syntax:
10681
10682  Match "foobar"
10683
10684 Which is equivalent to:
10685
10686  <Match "foobar">
10687  </Match>
10688
10689 =item B<Target> I<Name>
10690
10691 Add a target to a rule or a default target to a chain. The name specifies what
10692 kind of target is to be added. Which targets are available depends on the
10693 plugins being loaded.
10694
10695 The arguments inside the B<Target> block are passed to the plugin implementing
10696 the target, so which arguments are valid here depends on the plugin being used.
10697 If you do not need any to pass any arguments to a target, you can use the
10698 shorter syntax:
10699
10700  Target "stop"
10701
10702 This is the same as writing:
10703
10704  <Target "stop">
10705  </Target>
10706
10707 =back
10708
10709 =head2 Built-in targets
10710
10711 The following targets are built into the core daemon and therefore need no
10712 plugins to be loaded:
10713
10714 =over 4
10715
10716 =item B<return>
10717
10718 Signals the "return" condition, see the L<"Flow control"> section above. This
10719 causes the current chain to stop processing the value and returns control to
10720 the calling chain. The calling chain will continue processing targets and rules
10721 just after the B<jump> target (see below). This is very similar to the
10722 B<RETURN> target of iptables, see L<iptables(8)>.
10723
10724 This target does not have any options.
10725
10726 Example:
10727
10728  Target "return"
10729
10730 =item B<stop>
10731
10732 Signals the "stop" condition, see the L<"Flow control"> section above. This
10733 causes processing of the value to be aborted immediately. This is similar to
10734 the B<DROP> target of iptables, see L<iptables(8)>.
10735
10736 This target does not have any options.
10737
10738 Example:
10739
10740  Target "stop"
10741
10742 =item B<write>
10743
10744 Sends the value to "write" plugins.
10745
10746 Available options:
10747
10748 =over 4
10749
10750 =item B<Plugin> I<Name>
10751
10752 Name of the write plugin to which the data should be sent. This option may be
10753 given multiple times to send the data to more than one write plugin. If the
10754 plugin supports multiple instances, the plugin's instance(s) must also be
10755 specified.
10756
10757 =back
10758
10759 If no plugin is explicitly specified, the values will be sent to all available
10760 write plugins.
10761
10762 Single-instance plugin example:
10763
10764  <Target "write">
10765    Plugin "rrdtool"
10766  </Target>
10767
10768 Multi-instance plugin example:
10769
10770  <Plugin "write_graphite">
10771    <Node "foo">
10772    ...
10773    </Node>
10774    <Node "bar">
10775    ...
10776    </Node>
10777  </Plugin>
10778   ...
10779  <Target "write">
10780    Plugin "write_graphite/foo"
10781  </Target>
10782
10783 =item B<jump>
10784
10785 Starts processing the rules of another chain, see L<"Flow control"> above. If
10786 the end of that chain is reached, or a stop condition is encountered,
10787 processing will continue right after the B<jump> target, i.E<nbsp>e. with the
10788 next target or the next rule. This is similar to the B<-j> command line option
10789 of iptables, see L<iptables(8)>.
10790
10791 Available options:
10792
10793 =over 4
10794
10795 =item B<Chain> I<Name>
10796
10797 Jumps to the chain I<Name>. This argument is required and may appear only once.
10798
10799 =back
10800
10801 Example:
10802
10803  <Target "jump">
10804    Chain "foobar"
10805  </Target>
10806
10807 =back
10808
10809 =head2 Available matches
10810
10811 =over 4
10812
10813 =item B<regex>
10814
10815 Matches a value using regular expressions.
10816
10817 Available options:
10818
10819 =over 4
10820
10821 =item B<Host> I<Regex>
10822
10823 =item B<Plugin> I<Regex>
10824
10825 =item B<PluginInstance> I<Regex>
10826
10827 =item B<Type> I<Regex>
10828
10829 =item B<TypeInstance> I<Regex>
10830
10831 =item B<MetaData> I<String> I<Regex>
10832
10833 Match values where the given regular expressions match the various fields of
10834 the identifier of a value. If multiple regular expressions are given, B<all>
10835 regexen must match for a value to match.
10836
10837 =item B<Invert> B<false>|B<true>
10838
10839 When set to B<true>, the result of the match is inverted, i.e. all value lists
10840 where all regular expressions apply are not matched, all other value lists are
10841 matched. Defaults to B<false>.
10842
10843 =back
10844
10845 Example:
10846
10847  <Match "regex">
10848    Host "customer[0-9]+"
10849    Plugin "^foobar$"
10850  </Match>
10851
10852 =item B<timediff>
10853
10854 Matches values that have a time which differs from the time on the server.
10855
10856 This match is mainly intended for servers that receive values over the
10857 C<network> plugin and write them to disk using the C<rrdtool> plugin. RRDtool
10858 is very sensitive to the timestamp used when updating the RRD files. In
10859 particular, the time must be ever increasing. If a misbehaving client sends one
10860 packet with a timestamp far in the future, all further packets with a correct
10861 time will be ignored because of that one packet. What's worse, such corrupted
10862 RRD files are hard to fix.
10863
10864 This match lets one match all values B<outside> a specified time range
10865 (relative to the server's time), so you can use the B<stop> target (see below)
10866 to ignore the value, for example.
10867
10868 Available options:
10869
10870 =over 4
10871
10872 =item B<Future> I<Seconds>
10873
10874 Matches all values that are I<ahead> of the server's time by I<Seconds> or more
10875 seconds. Set to zero for no limit. Either B<Future> or B<Past> must be
10876 non-zero.
10877
10878 =item B<Past> I<Seconds>
10879
10880 Matches all values that are I<behind> of the server's time by I<Seconds> or
10881 more seconds. Set to zero for no limit. Either B<Future> or B<Past> must be
10882 non-zero.
10883
10884 =back
10885
10886 Example:
10887
10888  <Match "timediff">
10889    Future  300
10890    Past   3600
10891  </Match>
10892
10893 This example matches all values that are five minutes or more ahead of the
10894 server or one hour (or more) lagging behind.
10895
10896 =item B<value>
10897
10898 Matches the actual value of data sources against given minimumE<nbsp>/ maximum
10899 values. If a data-set consists of more than one data-source, all data-sources
10900 must match the specified ranges for a positive match.
10901
10902 Available options:
10903
10904 =over 4
10905
10906 =item B<Min> I<Value>
10907
10908 Sets the smallest value which still results in a match. If unset, behaves like
10909 negative infinity.
10910
10911 =item B<Max> I<Value>
10912
10913 Sets the largest value which still results in a match. If unset, behaves like
10914 positive infinity.
10915
10916 =item B<Invert> B<true>|B<false>
10917
10918 Inverts the selection. If the B<Min> and B<Max> settings result in a match,
10919 no-match is returned and vice versa. Please note that the B<Invert> setting
10920 only effects how B<Min> and B<Max> are applied to a specific value. Especially
10921 the B<DataSource> and B<Satisfy> settings (see below) are not inverted.
10922
10923 =item B<DataSource> I<DSName> [I<DSName> ...]
10924
10925 Select one or more of the data sources. If no data source is configured, all
10926 data sources will be checked. If the type handled by the match does not have a
10927 data source of the specified name(s), this will always result in no match
10928 (independent of the B<Invert> setting).
10929
10930 =item B<Satisfy> B<Any>|B<All>
10931
10932 Specifies how checking with several data sources is performed. If set to
10933 B<Any>, the match succeeds if one of the data sources is in the configured
10934 range. If set to B<All> the match only succeeds if all data sources are within
10935 the configured range. Default is B<All>.
10936
10937 Usually B<All> is used for positive matches, B<Any> is used for negative
10938 matches. This means that with B<All> you usually check that all values are in a
10939 "good" range, while with B<Any> you check if any value is within a "bad" range
10940 (or outside the "good" range).
10941
10942 =back
10943
10944 Either B<Min> or B<Max>, but not both, may be unset.
10945
10946 Example:
10947
10948  # Match all values smaller than or equal to 100. Matches only if all data
10949  # sources are below 100.
10950  <Match "value">
10951    Max 100
10952    Satisfy "All"
10953  </Match>
10954
10955  # Match if the value of any data source is outside the range of 0 - 100.
10956  <Match "value">
10957    Min   0
10958    Max 100
10959    Invert true
10960    Satisfy "Any"
10961  </Match>
10962
10963 =item B<empty_counter>
10964
10965 Matches all values with one or more data sources of type B<COUNTER> and where
10966 all counter values are zero. These counters usually I<never> increased since
10967 they started existing (and are therefore uninteresting), or got reset recently
10968 or overflowed and you had really, I<really> bad luck.
10969
10970 Please keep in mind that ignoring such counters can result in confusing
10971 behavior: Counters which hardly ever increase will be zero for long periods of
10972 time. If the counter is reset for some reason (machine or service restarted,
10973 usually), the graph will be empty (NAN) for a long time. People may not
10974 understand why.
10975
10976 =item B<hashed>
10977
10978 Calculates a hash value of the host name and matches values according to that
10979 hash value. This makes it possible to divide all hosts into groups and match
10980 only values that are in a specific group. The intended use is in load
10981 balancing, where you want to handle only part of all data and leave the rest
10982 for other servers.
10983
10984 The hashing function used tries to distribute the hosts evenly. First, it
10985 calculates a 32E<nbsp>bit hash value using the characters of the hostname:
10986
10987   hash_value = 0;
10988   for (i = 0; host[i] != 0; i++)
10989     hash_value = (hash_value * 251) + host[i];
10990
10991 The constant 251 is a prime number which is supposed to make this hash value
10992 more random. The code then checks the group for this host according to the
10993 I<Total> and I<Match> arguments:
10994
10995   if ((hash_value % Total) == Match)
10996     matches;
10997   else
10998     does not match;
10999
11000 Please note that when you set I<Total> to two (i.E<nbsp>e. you have only two
11001 groups), then the least significant bit of the hash value will be the XOR of
11002 all least significant bits in the host name. One consequence is that when you
11003 have two hosts, "server0.example.com" and "server1.example.com", where the host
11004 name differs in one digit only and the digits differ by one, those hosts will
11005 never end up in the same group.
11006
11007 Available options:
11008
11009 =over 4
11010
11011 =item B<Match> I<Match> I<Total>
11012
11013 Divide the data into I<Total> groups and match all hosts in group I<Match> as
11014 described above. The groups are numbered from zero, i.E<nbsp>e. I<Match> must
11015 be smaller than I<Total>. I<Total> must be at least one, although only values
11016 greater than one really do make any sense.
11017
11018 You can repeat this option to match multiple groups, for example:
11019
11020   Match 3 7
11021   Match 5 7
11022
11023 The above config will divide the data into seven groups and match groups three
11024 and five. One use would be to keep every value on two hosts so that if one
11025 fails the missing data can later be reconstructed from the second host.
11026
11027 =back
11028
11029 Example:
11030
11031  # Operate on the pre-cache chain, so that ignored values are not even in the
11032  # global cache.
11033  <Chain "PreCache">
11034    <Rule>
11035      <Match "hashed">
11036        # Divide all received hosts in seven groups and accept all hosts in
11037        # group three.
11038        Match 3 7
11039      </Match>
11040      # If matched: Return and continue.
11041      Target "return"
11042    </Rule>
11043    # If not matched: Return and stop.
11044    Target "stop"
11045  </Chain>
11046
11047 =back
11048
11049 =head2 Available targets
11050
11051 =over 4
11052
11053 =item B<notification>
11054
11055 Creates and dispatches a notification.
11056
11057 Available options:
11058
11059 =over 4
11060
11061 =item B<Message> I<String>
11062
11063 This required option sets the message of the notification. The following
11064 placeholders will be replaced by an appropriate value:
11065
11066 =over 4
11067
11068 =item B<%{host}>
11069
11070 =item B<%{plugin}>
11071
11072 =item B<%{plugin_instance}>
11073
11074 =item B<%{type}>
11075
11076 =item B<%{type_instance}>
11077
11078 These placeholders are replaced by the identifier field of the same name.
11079
11080 =item B<%{ds:>I<name>B<}>
11081
11082 These placeholders are replaced by a (hopefully) human readable representation
11083 of the current rate of this data source. If you changed the instance name
11084 (using the B<set> or B<replace> targets, see below), it may not be possible to
11085 convert counter values to rates.
11086
11087 =back
11088
11089 Please note that these placeholders are B<case sensitive>!
11090
11091 =item B<Severity> B<"FAILURE">|B<"WARNING">|B<"OKAY">
11092
11093 Sets the severity of the message. If omitted, the severity B<"WARNING"> is
11094 used.
11095
11096 =back
11097
11098 Example:
11099
11100   <Target "notification">
11101     Message "Oops, the %{type_instance} temperature is currently %{ds:value}!"
11102     Severity "WARNING"
11103   </Target>
11104
11105 =item B<replace>
11106
11107 Replaces parts of the identifier using regular expressions.
11108
11109 Available options:
11110
11111 =over 4
11112
11113 =item B<Host> I<Regex> I<Replacement>
11114
11115 =item B<Plugin> I<Regex> I<Replacement>
11116
11117 =item B<PluginInstance> I<Regex> I<Replacement>
11118
11119 =item B<TypeInstance> I<Regex> I<Replacement>
11120
11121 =item B<MetaData> I<String> I<Regex> I<Replacement>
11122
11123 =item B<DeleteMetaData> I<String> I<Regex>
11124
11125 Match the appropriate field with the given regular expression I<Regex>. If the
11126 regular expression matches, that part that matches is replaced with
11127 I<Replacement>. If multiple places of the input buffer match a given regular
11128 expression, only the first occurrence will be replaced.
11129
11130 You can specify each option multiple times to use multiple regular expressions
11131 one after another.
11132
11133 =back
11134
11135 Example:
11136
11137  <Target "replace">
11138    # Replace "example.net" with "example.com"
11139    Host "\\<example.net\\>" "example.com"
11140
11141    # Strip "www." from hostnames
11142    Host "\\<www\\." ""
11143  </Target>
11144
11145 =item B<set>
11146
11147 Sets part of the identifier of a value to a given string.
11148
11149 Available options:
11150
11151 =over 4
11152
11153 =item B<Host> I<String>
11154
11155 =item B<Plugin> I<String>
11156
11157 =item B<PluginInstance> I<String>
11158
11159 =item B<TypeInstance> I<String>
11160
11161 =item B<MetaData> I<String> I<String>
11162
11163 Set the appropriate field to the given string. The strings for plugin instance,
11164 type instance, and meta data may be empty, the strings for host and plugin may
11165 not be empty. It's currently not possible to set the type of a value this way.
11166
11167 The following placeholders will be replaced by an appropriate value:
11168
11169 =over 4
11170
11171 =item B<%{host}>
11172
11173 =item B<%{plugin}>
11174
11175 =item B<%{plugin_instance}>
11176
11177 =item B<%{type}>
11178
11179 =item B<%{type_instance}>
11180
11181 These placeholders are replaced by the identifier field of the same name.
11182
11183 =item B<%{meta:>I<name>B<}>
11184
11185 These placeholders are replaced by the meta data value with the given name.
11186
11187 =back
11188
11189 Please note that these placeholders are B<case sensitive>!
11190
11191 =item B<DeleteMetaData> I<String>
11192
11193 Delete the named meta data field.
11194
11195 =back
11196
11197 Example:
11198
11199  <Target "set">
11200    PluginInstance "coretemp"
11201    TypeInstance "core3"
11202  </Target>
11203
11204 =back
11205
11206 =head2 Backwards compatibility
11207
11208 If you use collectd with an old configuration, i.E<nbsp>e. one without a
11209 B<Chain> block, it will behave as it used to. This is equivalent to the
11210 following configuration:
11211
11212  <Chain "PostCache">
11213    Target "write"
11214  </Chain>
11215
11216 If you specify a B<PostCacheChain>, the B<write> target will not be added
11217 anywhere and you will have to make sure that it is called where appropriate. We
11218 suggest to add the above snippet as default target to your "PostCache" chain.
11219
11220 =head2 Examples
11221
11222 Ignore all values, where the hostname does not contain a dot, i.E<nbsp>e. can't
11223 be an FQDN.
11224
11225  <Chain "PreCache">
11226    <Rule "no_fqdn">
11227      <Match "regex">
11228        Host "^[^\.]*$"
11229      </Match>
11230      Target "stop"
11231    </Rule>
11232    Target "write"
11233  </Chain>
11234
11235 =head1 IGNORELISTS
11236
11237 B<Ignorelists> are a generic framework to either ignore some metrics or report
11238 specific metircs only. Plugins usually provide one or more options to specify
11239 the items (mounts points, devices, ...) and the boolean option
11240 C<IgnoreSelected>.
11241
11242 =over 4
11243
11244 =item B<Select> I<String>
11245
11246 Selects the item I<String>. This option often has a plugin specific name, e.g.
11247 B<Sensor> in the C<sensors> plugin. It is also plugin specific what this string
11248 is compared to. For example, the C<df> plugin's B<MountPoint> compares it to a
11249 mount point and the C<sensors> plugin's B<Sensor> compares it to a sensor name.
11250
11251 By default, this option is doing a case-sensitive full-string match. The
11252 following config will match C<foo>, but not C<Foo>:
11253
11254   Select "foo"
11255
11256 If I<String> starts and ends with C</> (a slash), the string is compiled as a
11257 I<regular expression>. For example, so match all item starting with C<foo>, use
11258 could use the following syntax:
11259
11260   Select "/^foo/"
11261
11262 The regular expression is I<not> anchored, i.e. the following config will match
11263 C<foobar>, C<barfoo> and C<AfooZ>:
11264
11265   Select "/foo/"
11266
11267 The B<Select> option may be repeated to select multiple items.
11268
11269 =item B<IgnoreSelected> B<true>|B<false>
11270
11271 If set to B<true>, matching metrics are I<ignored> and all other metrics are
11272 collected. If set to B<false>, matching metrics are I<collected> and all other
11273 metrics are ignored.
11274
11275 =back
11276
11277 =head1 SEE ALSO
11278
11279 L<collectd(1)>,
11280 L<collectd-exec(5)>,
11281 L<collectd-perl(5)>,
11282 L<collectd-unixsock(5)>,
11283 L<types.db(5)>,
11284 L<hddtemp(8)>,
11285 L<iptables(8)>,
11286 L<kstat(3KSTAT)>,
11287 L<mbmon(1)>,
11288 L<psql(1)>,
11289 L<regex(7)>,
11290 L<rrdtool(1)>,
11291 L<sensors(1)>
11292
11293 =head1 AUTHOR
11294
11295 Florian Forster E<lt>octo@collectd.orgE<gt>
11296
11297 =cut