diff options
author | Flavio Leitner <fbl@redhat.com> | 2016-05-05 10:20:42 -0400 |
---|---|---|
committer | Bryn M. Reeves <bmr@redhat.com> | 2016-05-26 18:22:27 +0100 |
commit | 134f9cf24e588d96f4c660a4264fc67f70c8e522 (patch) | |
tree | c44afbf6fed85102b6c7368d34655d42020238c2 | |
parent | 10944b281772ea6bd3641c8940dd5356057378f1 (diff) | |
download | sos-134f9cf24e588d96f4c660a4264fc67f70c8e522.tar.gz |
[openvswitch] Gather openvswitch systemd logs
Signed-off-by: Flavio Leitner <fbl@redhat.com>
-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. |