Difference between revisions of "Plugin:connectivity/Config"
From collectd Wiki
(Add configuration examples for connectivity plugin) |
m (Add link back to plugin main page) |
||
Line 25: | Line 25: | ||
IgnoreSelected true | IgnoreSelected true | ||
</Plugin> | </Plugin> | ||
+ | |||
+ | == See also == | ||
+ | |||
+ | * {{Plugin|connectivity}} |
Latest revision as of 19:21, 13 March 2020
This page contains some example configurations for the connectivity plugin. This page is meant as a cookbook, so if you have a configuration for an aspect not handled here or a daemon not present, please feel free to add anything that's useful for you.
Contents
Monitoring all interfaces
This example shows the connectivity plugin monitoring all interfaces.
LoadPlugin connectivity <Plugin connectivity> </Plugin>
Monitoring specific interfaces
This example shows connectivity plugin monitoring 2 interfaces, "eth0" and "eth1".
LoadPlugin connectivity <Plugin connectivity> Interface eth0 Interface eth1 </Plugin>
Excluding interfaces
This example shows the connectivity plugin monitoring all interfaces except "eth1".
LoadPlugin connectivity <Plugin connectivity> Interface eth1 IgnoreSelected true </Plugin>