diff options
author | Flavio Leitner <fbl@redhat.com> | 2016-05-05 13:33:59 -0400 |
---|---|---|
committer | Bryn M. Reeves <bmr@redhat.com> | 2016-05-26 18:22:28 +0100 |
commit | 4087e9e74d8e0a9714d8da4d392215b6bb067eec (patch) | |
tree | 1498d8ee15ac6577790f04275ff3b803c60a3b92 | |
parent | cb0791b0aecf19b02faabfbca4fbbb6e527be1e3 (diff) | |
download | sos-4087e9e74d8e0a9714d8da4d392215b6bb067eec.tar.gz |
[openvswitch] Capture cached routes
Provide cached routes from Open vSwitch.
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 babe3466..7905fd14 100644 --- a/sos/plugins/openvswitch.py +++ b/sos/plugins/openvswitch.py @@ -55,7 +55,9 @@ class OpenVSwitch(Plugin): # Capture LACP details "ovs-appctl lacp/show", # Capture coverage stats" - "ovs-appctl coverage/show" + "ovs-appctl coverage/show", + # Capture cached routes + "ovs-appctl ovs/route/show" ]) # Gather additional output for each OVS bridge on the host. |