From 90cd2974fe87d73e1be1644a06b1957d57c4a7f4 Mon Sep 17 00:00:00 2001 From: Jon Stanley Date: Tue, 12 Jun 2012 10:26:58 -0400 Subject: 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. --- sos/plugins/networking.py | 3 +++ 1 file changed, 3 insertions(+) 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") -- cgit