aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJeremy Crafts <jcrafts@redhat.com>2015-10-08 16:26:42 -0400
committerBryn M. Reeves <bmr@redhat.com>2015-10-15 12:36:39 +0100
commite137e9b0b79bd6e8a50fa5cae9a8ac13738ec666 (patch)
tree599029fc2896fde0c56f0dca11bd66d77b986751
parented97b1467173b7f41b49b822fcef8e87759b20c6 (diff)
downloadsos-e137e9b0b79bd6e8a50fa5cae9a8ac13738ec666.tar.gz
[insights] plugin for Red Hat Access Insights data
Closes: #663. Signed-off-by: Jeremy Crafts <jcrafts@redhat.com>
-rw-r--r--sos/plugins/insights.py42
1 files changed, 42 insertions, 0 deletions
diff --git a/sos/plugins/insights.py b/sos/plugins/insights.py
new file mode 100644
index 00000000..0f5a57b0
--- /dev/null
+++ b/sos/plugins/insights.py
@@ -0,0 +1,42 @@
+# This program is free software; you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation; either version 2 of the License, or
+# (at your option) any later version.
+
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU General Public License for more details.
+
+# You should have received a copy of the GNU General Public License
+# along with this program; if not, write to the Free Software
+# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
+
+from sos.plugins import Plugin, RedHatPlugin
+
+
+class RedHatAccessInsights(Plugin, RedHatPlugin):
+ '''Collect config and log for Red Hat Access Insights
+ '''
+ plugin_name = 'insights'
+ packages = ['redhat-access-insights']
+ profiles = ('system', 'sysmgmt')
+ conf_file = '/etc/redhat-access-insights/redhat-access-insights.conf'
+
+ def setup(self):
+ log_size = self.get_option('log_size')
+ self.add_copy_spec(
+ self.conf_file)
+ self.add_copy_spec_limit(
+ '/var/log/redhat-access-insights/*.log',
+ sizelimit=log_size)
+
+ def postproc(self):
+ self.do_file_sub(
+ self.conf_file,
+ r'(password[\t\ ]*=[\t\ ]*)(.+)',
+ r'\1********')
+ self.do_file_sub(
+ self.conf_file,
+ r'(proxy[\t\ ]*=.*)(:)(.*)(@.*)',
+ r'\1\2********\4')