diff options
-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 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. |