diff options
-rw-r--r-- | sos/plugins/openvswitch.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/sos/plugins/openvswitch.py b/sos/plugins/openvswitch.py index fbf3a903..1d756085 100644 --- a/sos/plugins/openvswitch.py +++ b/sos/plugins/openvswitch.py @@ -24,6 +24,10 @@ class OpenVSwitch(Plugin): profiles = ('network', 'virt') def setup(self): + self.add_copy_spec([ + "/var/log/openvswitch/ovs-vswitchd.log", + "/var/log/openvswitch/ovsdb-server.log" + ]) # The '-s' option enables dumping of packet counters on the # ports. self.add_cmd_output("ovs-dpctl -s show") |