X-Git-Url: https://git.octo.it/?p=collectd.git;a=blobdiff_plain;f=src%2Fcollectd.conf.pod;h=4f12d3b5f43432c4b8591dc576ecdcb76e9b77b6;hp=ccc69491644815d995826d76e4bdfd0dbf7e98ff;hb=2e48020912c1fa5c5e01421c039f967116547277;hpb=67d1044ac1307b1bb385d13d0f0bccaadd5a63fe diff --git a/src/collectd.conf.pod b/src/collectd.conf.pod index ccc69491..4f12d3b5 100644 --- a/src/collectd.conf.pod +++ b/src/collectd.conf.pod @@ -1574,6 +1574,45 @@ 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 + + +=over 4 + +=item B I + +interface(s) to monitor connect to. + +=item I + +If I is greater than or equal to zero the message indicates interface is up, +if I is less than zero the message indicates interface is down. + +=back + =head2 Plugin C This plugin collects IP conntrack statistics.