From 6391b89670d7f7a3c6efa92c3ca4fc8152ccc74c Mon Sep 17 00:00:00 2001 From: Flavio Leitner Date: Thu, 5 May 2016 19:45:01 -0400 Subject: [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 Signed-off-by: Flavio Leitner --- sos/plugins/openvswitch.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) 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. -- cgit