diff options
author | Rudnei Bertol Junior - RHT <rudnei@redhat.com> | 2024-01-18 11:58:53 -0300 |
---|---|---|
committer | Jake Hunsaker <jacob.r.hunsaker@gmail.com> | 2024-01-22 19:47:49 -0500 |
commit | fe286decff429afeb6cbee1989acd4bf5ed28866 (patch) | |
tree | fa14b425f743eb1e3c5e364899b0c7225c3b1c5d | |
parent | 52baa9b9d781b2c2afcffe1e0f7509a3a943c19f (diff) | |
download | sos-fe286decff429afeb6cbee1989acd4bf5ed28866.tar.gz |
[aap_eda] Add a new AAP EDA plugin.
Adding the file 'aap_eda.py' for the sos report collects
the files used for troubleshooting issues at
Ansible Automation Platform Event Driven Controller
Related: RH AAP-12898
Resolves: #3486
Signed-off-by: Rudnei Bertol Junior <rudnei@redhat.com>
-rw-r--r-- | sos/report/plugins/aap_eda.py | 51 |
1 files changed, 51 insertions, 0 deletions
diff --git a/sos/report/plugins/aap_eda.py b/sos/report/plugins/aap_eda.py new file mode 100644 index 00000000..0c76af53 --- /dev/null +++ b/sos/report/plugins/aap_eda.py @@ -0,0 +1,51 @@ +# Copyright (c) 2023 Rudnei Bertol Jr <rudnei@redhat.com> + +# This file is part of the sos project: https://github.com/sosreport/sos +# +# This copyrighted material is made available to anyone wishing to use, +# modify, copy, or redistribute it subject to the terms and conditions of +# version 2 of the GNU General Public License. +# +# See the LICENSE file in the source distribution for further information. + +from sos.report.plugins import Plugin, RedHatPlugin + + +class AAPEDAControllerPlugin(Plugin, RedHatPlugin): + short_desc = 'AAP EDA Controller plugin' + plugin_name = 'aap_eda' + profiles = ('sysmgmt', 'ansible') + packages = ('automation-eda-controller', + 'automation-eda-controller-server') + + def setup(self): + self.add_copy_spec([ + "/etc/ansible-automation-platform/", + "/var/log/ansible-automation-platform/eda/worker.log*", + "/var/log/ansible-automation-platform/eda/scheduler.log*", + "/var/log/ansible-automation-platform/eda/gunicorn.log*", + "/var/log/ansible-automation-platform/eda/activation.log*", + ]) + + self.add_forbidden_path([ + "/etc/ansible-automation-platform/eda/SECRET_KEY", + "/etc/ansible-automation-platform/eda/server.cert", + "/etc/ansible-automation-platform/eda/server.key", + ]) + + self.add_cmd_output([ + "aap-eda-manage --version", # eda version + "ls -alhR /etc/ansible-automation-platform/", + "ls -alhR /var/log/ansible-automation-platform/", + ]) + + self.add_cmd_output("su - eda -c 'export'", + suggest_filename="eda_export") + + def postproc(self): + self.do_path_regex_sub( + "/etc/ansible-automation-platform/eda/environment", + r"(EDA_SECRET_KEY|EDA_DB_PASSWORD)(\s*)(=|:)(\s*)(.*)", + r'\1\2\3\4********') + +# vim: set et ts=4 sw=4 : |