diff options
author | Flavio Leitner <fbl@redhat.com> | 2016-05-05 12:57:56 -0400 |
---|---|---|
committer | Bryn M. Reeves <bmr@redhat.com> | 2016-05-26 18:22:27 +0100 |
commit | 2a998b46d2cc42c19f807db3a0bd8fc08ca3e136 (patch) | |
tree | 7881748648c23d5dc189ded6640e5062ff18317d | |
parent | 4e6f6ffb5e1650acf2192a9e29864f29f07adffd (diff) | |
download | sos-2a998b46d2cc42c19f807db3a0bd8fc08ca3e136.tar.gz |
[openvswitch] Capture port details
Capture detailed information about network devices associated
with each bridge on the system.
Signed-off-by: Flavio Leitner <fbl@redhat.com>
-rw-r--r-- | sos/plugins/openvswitch.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sos/plugins/openvswitch.py b/sos/plugins/openvswitch.py index 26b558cf..12a77d59 100644 --- a/sos/plugins/openvswitch.py +++ b/sos/plugins/openvswitch.py @@ -58,7 +58,8 @@ class OpenVSwitch(Plugin): "ovs-ofctl show %s" % br, "ovs-ofctl dump-flows %s" % br, "ovs-appctl fdb/show %s" % br, - "ovs-ofctl dump-ports %s" % br + "ovs-ofctl dump-ports %s" % br, + "ovs-ofctl dump-ports-desc %s" % br ]) |