X-Git-Url: https://git.octo.it/?a=blobdiff_plain;f=src%2Fcollectd.conf.pod;h=01b068bf5d005d82012f4b986df05b588f781627;hb=dc76506152aa86f8c436a86241d98df3f41b1b4b;hp=e1aa5f20d3de0af10144b390d44da96b9a92ca4d;hpb=6ff769e0d7d6363e2f507118ccb7722457370442;p=collectd.git diff --git a/src/collectd.conf.pod b/src/collectd.conf.pod index e1aa5f20..01b068bf 100644 --- a/src/collectd.conf.pod +++ b/src/collectd.conf.pod @@ -1574,6 +1574,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. @@ -7323,7 +7364,7 @@ B BufferLength 10 Process "name" - RegexProcess "regex" + ProcessRegex "regex" B @@ -7341,7 +7382,7 @@ becomes available for storing a new event. Enumerate a process name to monitor. All processes that match this exact name will be monitored for EXECs and EXITs. -=item B I +=item B I Enumerate a process pattern to monitor. All processes that match this regular expression will be monitored for EXECs and EXITs.