X-Git-Url: https://git.octo.it/?p=collectd.git;a=blobdiff_plain;f=src%2Fcollectd.conf.pod;h=cda1002c5de721ebde9d3ed6ada459ae1c255e0a;hp=7e250cc1c9bbea9b0a779ef72bca8d287fd2428c;hb=48efd3deb4c9139fd060ff3d289896e9031bcc7c;hpb=3fecfdaa17500840ecdab16b0684d3bdc7d72e1a diff --git a/src/collectd.conf.pod b/src/collectd.conf.pod index 7e250cc1..cda1002c 100644 --- a/src/collectd.conf.pod +++ b/src/collectd.conf.pod @@ -1548,6 +1548,35 @@ at all, B cgroups are selected. =back +=head2 Plugin C + +The I designed to check and notify about host or service +status based on I metric. + +When new metric of I type appears in cache, OK notification is sent. +When new value for metric is less than previous value, WARNING notification is +sent about host/service restart. +When no new updates comes for metric and cache entry expires, then FAILURE +notification is sent about unreachable host or service. + +By default (when no explicit configuration), plugin checks for I metric. + +B + + + Type "uptime" + Type "my_uptime_type" + + +=over 4 + +=item B I + +Metric type to check for status/values. The type should consist single GAUGE +data source. + +=back + =head2 Plugin C The C plugin collects ntp data from a B server, such as clock @@ -1574,6 +1603,47 @@ Connection timeout in seconds. Defaults to B<2>. =back +=head2 Plugin Connectivity + +connectivity - Documentation of collectd's C + + + LoadPlugin connectivity + # ... + + Interface eth0 + + +The C queries interface status using netlink (man 7 netlink) which provides information about network interfaces via the NETLINK_ROUTE family (man 7 rtnetlink). The plugin translates the value it receives to collectd's internal format and, depending on the write plugins you have loaded, it may be written to disk or submitted to another instance. +The plugin listens to interfaces enumerated within the plugin configuration (see below). If no interfaces are listed, then the default is for all interfaces to be monitored. + +This example shows C monitoring all interfaces. +LoadPlugin connectivity + + + +This example shows C monitoring 2 interfaces, "eth0" and "eth1". +LoadPlugin connectivity + + Interface eth0 + Interface eth1 + + +This example shows C monitoring all interfaces except "eth1". +LoadPlugin connectivity + + Interface eth1 + IgnoreSelected true + + +=over 4 + +=item B I + +interface(s) to monitor connect to. + +=back + =head2 Plugin C This plugin collects IP conntrack statistics. @@ -4758,7 +4828,7 @@ Hostname of the database server. Defaults to B. Username to use when connecting to the database. The user does not have to be granted any privileges (which is synonym to granting the C privilege), -unless you want to collectd replication statistics (see B and +unless you want to collect replication statistics (see B and B below). In this case, the user needs the C (or C) privileges. Else, any existing MySQL user will do. @@ -4808,9 +4878,10 @@ or SQL threads are not running. Defaults to B. =item B I - Enable the collection of wsrep plugin statistics, used in Master-Master - replication setups like in MySQL Galera/Percona XtraDB Cluster. - User needs only privileges to execute 'SHOW GLOBAL STATUS' +Enable the collection of wsrep plugin statistics, used in Master-Master +replication setups like in MySQL Galera/Percona XtraDB Cluster. +User needs only privileges to execute 'SHOW GLOBAL STATUS'. +Defaults to B. =item B I @@ -7314,6 +7385,40 @@ reporting the corresponding processes only. Outside of B and B blocks these options set the default value for subsequent matches. +=head2 Plugin C + +The I plugin monitors when processes start (EXEC) and stop (EXIT). + +B + + + BufferLength 10 + Process "name" + ProcessRegex "regex" + + +B + +=over 4 + +=item B I + +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 I + +Enumerate a process name to monitor. All processes that match this exact +name will be monitored for EXECs and EXITs. + +=item B I + +Enumerate a process pattern to monitor. All processes that match this +regular expression will be monitored for EXECs and EXITs. + +=back + =head2 Plugin C Collects a lot of information about various network protocols, such as I,