aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorFlavio Leitner <fbl@redhat.com>2016-05-05 19:45:01 -0400
committerBryn M. Reeves <bmr@redhat.com>2016-05-26 18:22:28 +0100
commit6391b89670d7f7a3c6efa92c3ca4fc8152ccc74c (patch)
treeaec25b455853cdbeda39c837c0eaf260977caaaf
parentc4e73dcafbb4bf47f94527b8c48a8522ce45aa43 (diff)
downloadsos-6391b89670d7f7a3c6efa92c3ca4fc8152ccc74c.tar.gz
[openvswitch] Capture Open_vSwitch other_config
After Open vSwitch 2.5 release, the DPDK configuration moved from command line to the OVS database, so provide that in the sosreports. Suggested-by: Aaron Conole <aconole@redhat.com> Signed-off-by: Flavio Leitner <fbl@redhat.com>
-rw-r--r--sos/plugins/openvswitch.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/sos/plugins/openvswitch.py b/sos/plugins/openvswitch.py
index e2a7a213..47cb59a1 100644
--- a/sos/plugins/openvswitch.py
+++ b/sos/plugins/openvswitch.py
@@ -63,7 +63,9 @@ class OpenVSwitch(Plugin):
# Capture a list of listening ports"
"ovs-appctl tnl/ports/show",
# Capture upcall information
- "ovs-appctl upcall/show"
+ "ovs-appctl upcall/show",
+ # Capture DPDK and other parameters
+ "ovs-vsctl -t 5 get Open_vSwitch . other_config"
])
# Gather additional output for each OVS bridge on the host.