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 5e8c95a5..e2a7a213 100644 --- a/sos/plugins/openvswitch.py +++ b/sos/plugins/openvswitch.py @@ -61,7 +61,9 @@ class OpenVSwitch(Plugin): # Capture tnl arp table" "ovs-appctl tnl/arp/show", # Capture a list of listening ports" - "ovs-appctl tnl/ports/show" + "ovs-appctl tnl/ports/show", + # Capture upcall information + "ovs-appctl upcall/show" ]) # Gather additional output for each OVS bridge on the host. |