diff options
author | Flavio Leitner <fbl@redhat.com> | 2016-05-05 12:56:07 -0400 |
---|---|---|
committer | Bryn M. Reeves <bmr@redhat.com> | 2016-05-26 18:22:27 +0100 |
commit | 4e6f6ffb5e1650acf2192a9e29864f29f07adffd (patch) | |
tree | cba853f08ea268b6a0bb1d5f602391cb1027ce0a | |
parent | 96bb9901cd843bfaa4120f051ec4d27761e7e441 (diff) | |
download | sos-4e6f6ffb5e1650acf2192a9e29864f29f07adffd.tar.gz |
[openvswitch] Capture port statistics
For each bridge, capture all port statistics.
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 54f78827..26b558cf 100644 --- a/sos/plugins/openvswitch.py +++ b/sos/plugins/openvswitch.py @@ -57,7 +57,8 @@ class OpenVSwitch(Plugin): self.add_cmd_output([ "ovs-ofctl show %s" % br, "ovs-ofctl dump-flows %s" % br, - "ovs-appctl fdb/show %s" % br + "ovs-appctl fdb/show %s" % br, + "ovs-ofctl dump-ports %s" % br ]) |