diff options
author | Flavio Leitner <fbl@redhat.com> | 2016-05-05 13:32:07 -0400 |
---|---|---|
committer | Bryn M. Reeves <bmr@redhat.com> | 2016-05-26 18:22:27 +0100 |
commit | cb0791b0aecf19b02faabfbca4fbbb6e527be1e3 (patch) | |
tree | 332cf80ceab33f5d67c5292c33ef7c362c1c374f | |
parent | 61cf7f26da5948a6f58d45205be095cc467d3c60 (diff) | |
download | sos-cb0791b0aecf19b02faabfbca4fbbb6e527be1e3.tar.gz |
[openvswitch] Capture coverage stats
Provide coverage statistics.
Signed-off-by: Flavio Leitner <fbl@redhat.com>
-rw-r--r-- | sos/plugins/openvswitch.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/sos/plugins/openvswitch.py b/sos/plugins/openvswitch.py index cc918041..babe3466 100644 --- a/sos/plugins/openvswitch.py +++ b/sos/plugins/openvswitch.py @@ -53,7 +53,9 @@ class OpenVSwitch(Plugin): # Capture more details from bond devices "ovs-appctl bond/show", # Capture LACP details - "ovs-appctl lacp/show" + "ovs-appctl lacp/show", + # Capture coverage stats" + "ovs-appctl coverage/show" ]) # Gather additional output for each OVS bridge on the host. |