diff options
author | Aaron Conole <aconole@redhat.com> | 2020-05-07 10:36:37 -0400 |
---|---|---|
committer | Jake Hunsaker <jhunsake@redhat.com> | 2020-05-26 14:16:58 -0400 |
commit | 798fc4a5c204b59cbe39ae7aca194642e3d78faa (patch) | |
tree | 4db8221fb1a1da397dd225fdd035f41ff6f342c1 | |
parent | e1b474af6bccee152fcdaa247e743d924348a71c (diff) | |
download | sos-798fc4a5c204b59cbe39ae7aca194642e3d78faa.tar.gz |
[openvswitch] pull additional bridge information
Pulls additional flow stats, features, forwarding information and mac
layer information.
Signed-off-by: Aaron Conole <aconole@redhat.com>
Signed-off-by: Jake Hunsaker <jhunsake@redhat.com>
-rw-r--r-- | sos/report/plugins/openvswitch.py | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/sos/report/plugins/openvswitch.py b/sos/report/plugins/openvswitch.py index 29e6c35f..b374dad8 100644 --- a/sos/report/plugins/openvswitch.py +++ b/sos/report/plugins/openvswitch.py @@ -114,14 +114,17 @@ class OpenVSwitch(Plugin): if br_list_result['status'] == 0: for br in br_list_result['output'].splitlines(): self.add_cmd_output([ + "ovs-appctl bridge/dump-flows --offload-stats %s" % br, + "ovs-appctl dpif/show-dp-features %s" % br, "ovs-appctl fdb/show %s" % br, + "ovs-appctl fdb/stats-show %s" % br, + "ovs-appctl mdb/show %s" % br, "ovs-ofctl dump-flows %s" % br, "ovs-ofctl dump-ports-desc %s" % br, "ovs-ofctl dump-ports %s" % br, "ovs-ofctl queue-get-config %s" % br, "ovs-ofctl queue-stats %s" % br, "ovs-ofctl show %s" % br, - "ovs-appctl fdb/stats-show %s" % br ]) # Flow protocols currently supported |