diff options
author | Jon Stanley <jonstanley@gmail.com> | 2012-06-12 10:26:58 -0400 |
---|---|---|
committer | Jon Stanley <jonstanley@gmail.com> | 2012-06-12 10:26:58 -0400 |
commit | 90cd2974fe87d73e1be1644a06b1957d57c4a7f4 (patch) | |
tree | f3ff0f1da79a9f9a827142023d0a01143b8f9b4b | |
parent | b46608a06e69039349b56daa1952d68e4f451ff5 (diff) | |
download | sos-90cd2974fe87d73e1be1644a06b1957d57c4a7f4.tar.gz |
Collect ring, coalesce, and pause attributes of interfaces.
These are very useful items to have in general in order to see
the configuration of systems. They are performance impacting
parameters.
-rw-r--r-- | sos/plugins/networking.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/sos/plugins/networking.py b/sos/plugins/networking.py index 4f1f02f6..0497902e 100644 --- a/sos/plugins/networking.py +++ b/sos/plugins/networking.py @@ -77,5 +77,8 @@ class networking(Plugin, RedHatPlugin): self.collectExtOutput("/sbin/ethtool -i "+eth) self.collectExtOutput("/sbin/ethtool -k "+eth) self.collectExtOutput("/sbin/ethtool -S "+eth) + self.collectExtOutput("/sbin/ethtool -a "+eth) + self.collectExtOutput("/sbin/ethtool -c "+eth) + self.collectExtOutput("/sbin/ethtool -g "+eth) if self.getOption("traceroute"): self.collectExtOutput("/bin/traceroute -n rhn.redhat.com") |