summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 8ae25a9)
raw | patch | inline | side by side (parent: 8ae25a9)
author | Florian Forster <octo@collectd.org> | |
Mon, 12 Mar 2012 06:38:19 +0000 (07:38 +0100) | ||
committer | Florian Forster <octo@collectd.org> | |
Mon, 12 Mar 2012 06:38:19 +0000 (07:38 +0100) |
AUTHORS | patch | blob | history | |
README | patch | blob | history | |
src/collectd.conf.in | patch | blob | history | |
src/collectd.conf.pod | patch | blob | history |
index b7eda4631249049f2bc27430d6d0f9d06abbadb4..90560e347acef55d1dc50bac405725b65a6e41fa 100644 (file)
--- a/AUTHORS
+++ b/AUTHORS
- The version 3 `log' mode.
- Many Solaris related hints and fixes.
+Cyril Feraudet <cyril at feraudet.com>
+ - ethstat plugin.
+
Dan Berrange <berrange at redhat.com>
- uuid plugin.
index e65f46bfdd0ed12e64aebb01ac04ec9a849f5055..67cac046aa835e8c0a319a5097e88c74c6914fe4 100644 (file)
--- a/README
+++ b/README
- entropy
Amount of entropy available to the system.
+ - ethstat
+ Network interface card statistics.
+
- exec
Values gathered by a custom program or script.
See collectd-exec(5).
diff --git a/src/collectd.conf.in b/src/collectd.conf.in
index 0e1dc2e4ebca85c7a054c315e282fdb810e70700..01f024dd17b9b3b9273740e32eda2c6d0fb1745a 100644 (file)
--- a/src/collectd.conf.in
+++ b/src/collectd.conf.in
#@BUILD_PLUGIN_DNS_TRUE@LoadPlugin dns
#@BUILD_PLUGIN_EMAIL_TRUE@LoadPlugin email
#@BUILD_PLUGIN_ENTROPY_TRUE@LoadPlugin entropy
+#@BUILD_PLUGIN_ETHSTAT_TRUE@LoadPlugin ethstat
#@BUILD_PLUGIN_EXEC_TRUE@LoadPlugin exec
#@BUILD_PLUGIN_FILECOUNT_TRUE@LoadPlugin filecount
#@BUILD_PLUGIN_FSCACHE_TRUE@LoadPlugin fscache
# MaxConns 5
#</Plugin>
+#<Plugin ethstat>
+# Interface "eth0"
+#</Plugin>
+
#<Plugin exec>
# Exec "user:group" "/path/to/exec"
# NotificationExec "user:group" "/path/to/exec"
diff --git a/src/collectd.conf.pod b/src/collectd.conf.pod
index 139919f4470fa994494e143f5a26cdd0457e6097..765d2ac7afd9c0c46041ba5bac4c9e8ab9878f71 100644 (file)
--- a/src/collectd.conf.pod
+++ b/src/collectd.conf.pod
=back
+=head2 Plugin C<ethstat>
+
+The I<ethstat plugin> collects information about network interface cards (NICs)
+by talking directly with the underlying kernel driver using L<ioctl(2)>.
+
+B<Synopsis:>
+
+ <Plugin "ethstat">
+ Interface "eth0"
+ </Plugin>
+
+B<Options:>
+
+=over 4
+
+=item B<Interface> I<Name>
+
+Collect statistical information about interface I<Name>.
+
+=back
+
=head2 Plugin C<exec>
Please make sure to read L<collectd-exec(5)> before using this plugin. It