diff options
author | Gobinda Das <godas@redhat.com> | 2019-08-10 13:36:36 +0530 |
---|---|---|
committer | Pavel Moravec <pmoravec@redhat.com> | 2019-08-25 12:39:56 +0200 |
commit | 8203bdeb77ac0d3f32f1a88304b9a34de66ae7b6 (patch) | |
tree | 313ae6b8e2a10948daac6aa5ed1a672675735fd1 | |
parent | d556adbc6ba3693e80b694f4032ecd4a5903cd2e (diff) | |
download | sos-8203bdeb77ac0d3f32f1a88304b9a34de66ae7b6.tar.gz |
[ovirt_hosted_engine] Add gluster deployment and cleanup log
Resolves: #1748
Signed-off-by: Gobinda Das <godas@redhat.com>
Signed-off-by: Pavel Moravec <pmoravec@redhat.com>
-rw-r--r-- | sos/plugins/ovirt_hosted_engine.py | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/sos/plugins/ovirt_hosted_engine.py b/sos/plugins/ovirt_hosted_engine.py index 3d1bfe36..fefc0294 100644 --- a/sos/plugins/ovirt_hosted_engine.py +++ b/sos/plugins/ovirt_hosted_engine.py @@ -48,6 +48,12 @@ class OvirtHostedEngine(Plugin, RedHatPlugin): '/var/log/ovirt-hosted-engine-ha/agent.log', '/var/log/ovirt-hosted-engine-ha/broker.log', ]) + + # Add gluster deployment and cleanup log + self.add_copy_spec([ + '/var/log/cockpit/ovirt-dashboard' + ]) + # Add older ovirt-hosted-engine-ha log files only if requested if self.get_option('all_logs'): self.add_copy_spec(self.HA_LOG_GLOB) |