]> git.ipfire.org Git - thirdparty/collectd.git/commitdiff
collectd.conf.pod: remove trailing whitespaces 3416/head
authorRuben Kerkhof <ruben@rubenkerkhof.com>
Fri, 13 Mar 2020 14:23:00 +0000 (15:23 +0100)
committerRuben Kerkhof <ruben@rubenkerkhof.com>
Fri, 13 Mar 2020 14:23:00 +0000 (15:23 +0100)
src/collectd.conf.pod

index cda1002c5de721ebde9d3ed6ada459ae1c255e0a..13e3db0e142b0bbd7cfb571aba2aa345b12c7b39 100644 (file)
@@ -1635,7 +1635,7 @@ LoadPlugin connectivity
   Interface eth1
   IgnoreSelected true
 </Plugin>
+
 =over 4
 
 =item B<Interface> I<interface_name>
@@ -7386,37 +7386,37 @@ B<ProcessMatch> blocks these options set the default value for subsequent
 matches.
 
 =head2 Plugin C<procevent>
+
 The I<procevent> plugin monitors when processes start (EXEC) and stop (EXIT).
+
 B<Synopsis:>
+
   <Plugin procevent>
     BufferLength 10
     Process "name"
     ProcessRegex "regex"
   </Plugin>
+
 B<Options:>
+
 =over 4
+
 =item B<BufferLength> I<length>
+
 Maximum number of process events that can be stored in plugin's ring buffer.
 By default, this is set to 10.  Once an event has been read, its location
 becomes available for storing a new event.
+
 =item B<Process> I<name>
+
 Enumerate a process name to monitor.  All processes that match this exact
 name will be monitored for EXECs and EXITs.
 
 =item B<ProcessRegex> I<regex>
+
 Enumerate a process pattern to monitor.  All processes that match this 
 regular expression will be monitored for EXECs and EXITs.
+
 =back
 
 =head2 Plugin C<protocols>
@@ -8353,11 +8353,11 @@ or is not reliable.
 =back
 
 =head2 Plugin C<sysevent>
+
 The I<sysevent> plugin monitors rsyslog messages.
+
 B<Synopsis:>
+
   <Plugin sysevent>
     Listen "192.168.0.2" "6666"
     BufferSize 1024
@@ -8391,29 +8391,29 @@ B<Synopsis:>
   are meant to demonstration the proper remote logging and JSON format syntax.
 
 B<Options:>
+
 =over 4
+
 =item B<Listen> I<host> I<port>
+
 Listen on this IP on this port for incoming rsyslog messages.
 
 =item B<BufferSize> I<length>
+
 Maximum allowed size for incoming rsyslog messages.  Messages that exceed 
 this number will be truncated to this size.  Default is 4096 bytes.
 
 =item B<BufferLength> I<length>
+
 Maximum number of rsyslog events that can be stored in plugin's ring buffer.
 By default, this is set to 10.  Once an event has been read, its location
 becomes available for storing a new event.
 
 =item B<RegexFilter> I<regex>
+
 Enumerate a regex filter to apply to all incoming rsyslog messages.  If a
 message matches this filter, it will be published.
+
 =back
 
 =head2 Plugin C<syslog>