diff options
author | Flavio Leitner <fbl@redhat.com> | 2016-05-05 13:01:39 -0400 |
---|---|---|
committer | Bryn M. Reeves <bmr@redhat.com> | 2016-05-26 18:22:27 +0100 |
commit | 65223565b91b90f7e642bda08882cc0011806b11 (patch) | |
tree | 32d49c09029672488e073e6b9e148a4a7e725660 | |
parent | 2a998b46d2cc42c19f807db3a0bd8fc08ca3e136 (diff) | |
download | sos-65223565b91b90f7e642bda08882cc0011806b11.tar.gz |
[openvswitch] Capture queue statistics
Each device can have queues so capture all their stats.
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 12a77d59..bf39ca53 100644 --- a/sos/plugins/openvswitch.py +++ b/sos/plugins/openvswitch.py @@ -59,7 +59,8 @@ class OpenVSwitch(Plugin): "ovs-ofctl dump-flows %s" % br, "ovs-appctl fdb/show %s" % br, "ovs-ofctl dump-ports %s" % br, - "ovs-ofctl dump-ports-desc %s" % br + "ovs-ofctl dump-ports-desc %s" % br, + "ovs-ofctl queue-stats %s" % br ]) |