author | Marc Fournier <marc.fournier@camptocamp.com> | |
Thu, 21 Jan 2016 20:29:18 +0000 (21:29 +0100) | ||
committer | Marc Fournier <marc.fournier@camptocamp.com> | |
Thu, 21 Jan 2016 20:29:18 +0000 (21:29 +0100) |
1 | 2 | |||
---|---|---|---|---|
src/collectd.conf.in | patch | | diff1 | | diff2 | | blob | history |
src/collectd.conf.pod | patch | | diff1 | | diff2 | | blob | history |
src/virt.c | patch | | diff1 | | diff2 | | blob | history |
diff --cc src/collectd.conf.in
Simple merge
diff --cc src/collectd.conf.pod
index b992eac126a140fc4f42051a31526df13eb18cca,7a66c8188f8182589da12df69cc04e9dbf21ea1e..5d9e73701979f35398d4b89c114987cecda3aeac
+++ b/src/collectd.conf.pod
B<Interface> is inverted: All selected interfaces are ignored and all
other interfaces are collected.
+ It is possible to use regular expressions to match interface names, if the
+ name is surrounded by I</.../> and collectd was compiled with support for
+ regexps. This is useful if there's a need to collect (or ignore) data
+ for a group of interfaces that are similarly named, without the need to
+ explicitly list all of them (especially useful if the list is dynamic).
+ Example:
+
+ Interface "lo"
+ Interface "/^veth/"
+ Interface "/^tun[0-9]+/"
+ IgnoreSelected "true"
+
+ This will ignore the loopback interface, all interfaces with names starting
+ with I<veth> and all interfaces with names starting with I<tun> followed by
+ at least one digit.
+
+
+=item B<UniqueName> I<true>|I<false>
+
+Interface name is not unique on Solaris (KSTAT), interface name is unique
+only within a module/instance. Following tuple is considered unique:
+ (ks_module, ks_instance, ks_name)
+If this option is set to true, interface name contains above three fields
+separated by an underscore. For more info on KSTAT, visit
+L<http://docs.oracle.com/cd/E23824_01/html/821-1468/kstat-3kstat.html#REFMAN3Ekstat-3kstat>
+
+This option is only available on Solaris.
+
=back
=head2 Plugin C<ipmi>
diff --cc src/virt.c
Simple merge