diff options
-rw-r--r-- | sos/plugins/openvswitch.py | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/sos/plugins/openvswitch.py b/sos/plugins/openvswitch.py index dc543606..d3493511 100644 --- a/sos/plugins/openvswitch.py +++ b/sos/plugins/openvswitch.py @@ -42,7 +42,10 @@ class OpenVSwitch(Plugin): # Gather the database. "ovsdb-client -f list dump", # List the contents of runtime directory - "ls -laZ /var/run/openvswitch" + "ls -laZ /var/run/openvswitch", + # Gather systemd services logs + "journalctl -u openvswitch", + "journalctl -u openvswitch-nonetwork" ]) # Gather additional output for each OVS bridge on the host. |