From b33443b282a80ca938bf5b19b1cad727c73c44da Mon Sep 17 00:00:00 2001 From: root Date: Tue, 12 Dec 2023 09:45:05 +0100 Subject: [PATCH] [discovery] collect also logs from container discovery-toolbox As part of the discovery is also discovery-toolbox plugin we should collect also logs from this plugin which may be helpful in debugging issues. Signed-off-by: Jan Jansky --- sos/report/plugins/discovery.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/sos/report/plugins/discovery.py b/sos/report/plugins/discovery.py index e54132988b..ae70450f63 100644 --- a/sos/report/plugins/discovery.py +++ b/sos/report/plugins/discovery.py @@ -16,7 +16,7 @@ class Discovery(Plugin, RedHatPlugin): short_desc = 'Discovery inspection and reporting tool' plugin_name = 'discovery' packages = ('discovery', 'discovery-tools',) - containers = ('dsc-db', 'discovery',) + containers = ('dsc-db', 'discovery', 'discovery-toolbox') def setup(self): self.add_copy_spec([ @@ -29,6 +29,7 @@ def setup(self): self.add_container_logs([ 'discovery', - 'dsc-db' + 'dsc-db', + 'discovery-toolbox' ]) # vim: set et ts=4 sw=4 :