X-Git-Url: https://git.octo.it/?a=blobdiff_plain;f=src%2Fcollectd.conf.pod;h=e8e1f3e5859390a130e446c00a21df4a487628f8;hb=26162b5cc7f2fdd7acb939ae6dbd927defaffbe6;hp=a7a5816753a0bc1b3fb69fafdb447ad38ad43121;hpb=1b6906d2288a984af21f43aabc3d71d3d1024b1b;p=collectd.git diff --git a/src/collectd.conf.pod b/src/collectd.conf.pod index a7a58167..e8e1f3e5 100644 --- a/src/collectd.conf.pod +++ b/src/collectd.conf.pod @@ -802,12 +802,22 @@ B can handle it. TCP-Port to connect to. Defaults to B<3551>. -=item B B +=item B B|B If set to B, the time reported in the C metric will be converted to seconds. This is the recommended setting. If set to B, the default for backwards compatibility, the time will be reported in minutes. +=item B B|B + +By default, the plugin will try to keep the connection to UPS open between +reads. Since this appears to be somewhat brittle (I appears to close +the connection due to inactivity quite quickly), the plugin will try to detect +this problem and switch to an open-read-close mode in such cases. + +You can instruct the plugin to close the connection after each read by setting +this option to B. + =back =head2 Plugin C @@ -2264,6 +2274,27 @@ expected from them. This is documented in great detail in L. =back +=head2 Plugin C + +The C plugin provides statistics about used, unused and total number of +file handles. + +The I provides the following configuration options: + +=over 4 + +=item B B|B + +Enables or disables reporting of file handles usage in absolute numbers, +e.g. file handles used. Defaults to B. + +=item B B|B + +Enables or disables reporting of file handles usage in percentages, e.g. +percent of file handles used. Defaults to B. + +=back + =head2 Plugin C The C plugin counts the number of files in a certain directory (and @@ -3848,6 +3879,69 @@ Collect SnapVault(R) statistics every I seconds. =back +=head2 Plugin C + +The C plugin provides a management interface for I much like +the C plugin. Please see L for a description of +the commands understood on the socket. Optionally, network traffic is encrypted +and authenticated using I (TLS). + +The configuration of the C plugin consists of one or more B +block, each defining a socket to bind to and listen on. Example: + + + + Address "::1" + Port "25826" + TLSCertFile "/path/to/cert" + TLSKeyFile "/path/to/key" + TLSCAFile "/path/to/ca" + TLSCRLFile "/path/to/crl" + TLSVerifyPeer true + + + +Valid options inside a B block are: + +=over 4 + +=item B
I
|I + +Address or hostname to bind to. If not specified, bind to the I address. + +=item B I|I + +Port number or service name to bind to. Defaults to C<"25826">. Please note +that even numeric ports must be specified as a string. + +=item B I + +Path to the TLS certificate file. + +=item B I + +Path to the TLS key file. + +=item B I + +Path to the TLS I (CA) file. + +=item B I + +Path to the TLS I (CRL) file. + +=item B B|B + +Controlls whether or not to verify the client certificate of connecting peers. +The plugin will I a client certificate either way, but it will only +I a valid certificate when this option is set to B. Defaults to +B. + +If set to B, the options B, B and B +are I. + +=back + =head2 Plugin C The C plugin uses a netlink socket to query the Linux kernel about @@ -5401,6 +5495,10 @@ dispatched to the daemon using the specified I as an identifier. This allows to "group" several processes together. I must not contain slashes. +=item B I + +Collect context switch of the process. + =back =head2 Plugin C @@ -6587,6 +6685,79 @@ Default: B<1978> =back +=head2 Plugin C + +The I reads CPU frequency and C-state residency on modern +Intel processors by using the new Model Specific Registers. + +=over 4 + +=item B I + +Bitmask of the list of core C states supported by the processor. +This option should only be used if the automated detection fails. +Default value extracted from the cpu model and family. + +Currently supported C-states (by this plugin): 3, 6, 7 + +Example: (1<<3)+(1<<6)+(1<<7) = 392 for all states + +=item B I + +Bitmask of the list of pacages C states supported by the processor. +This option should only be used if the automated detection fails. +Default value extracted from the cpu model and family. + +Currently supported C-states (by this plugin): 2, 3, 6, 7, 8, 9, 10 + +Example: (1<<2)+(1<<3)+(1<<6)+(1<<7) = 396 for states 2, 3, 6 and 7 + +=item B I|I + +Boolean enabling the collection of the I/O System-Management Interrupt +counter'. This option should only be used if the automated detection +fails or if you want to disable this feature. + +=item B I|I + +Boolean enabling the collection of the temperature of each core. +This option should only be used if the automated detectionfails or +if you want to disable this feature. + +=item B I|I + +Boolean enabling the collection of the temperature of each package. +This option should only be used if the automated detectionfails or +if you want to disable this feature. + +=item B I + +Thermal Control Circuit Activation Temperature of the installed +CPU. This temperature is used when collecting the temperature of +cores or packages. This option should only be used if the automated +detection fails. Default value extracted from B + +=item B I + +Bitmask of the list of elements to be thermally monitored. This option +should only be used if the automated detection fails or if you want to +disable some collections. The different bits of this bitmask accepted +by this plugin are: + +=over 4 + +=item 0 ('1'): Package + +=item 1 ('2'): DRAM + +=item 2 ('4'): Cores + +=item 3 ('8'): Embedded graphic device + +=back + +=back + =head2 Plugin C =over 4