aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--sos/plugins/openvswitch.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/sos/plugins/openvswitch.py b/sos/plugins/openvswitch.py
index 1d756085..4dd15b2c 100644
--- a/sos/plugins/openvswitch.py
+++ b/sos/plugins/openvswitch.py
@@ -44,6 +44,9 @@ class OpenVSwitch(Plugin):
self.add_cmd_output("ovs-ofctl dump-flows %s" % br)
self.add_cmd_output("ovs-appctl fdb/show %s" % br)
+ # Gather the database.
+ self.add_cmd_output("ovsdb-client dump")
+
class RedHatOpenVSwitch(OpenVSwitch, RedHatPlugin):