diff options
-rw-r--r-- | sos/plugins/activemq.py | 29 | ||||
-rw-r--r-- | sos/plugins/openshift.py | 1 |
2 files changed, 29 insertions, 1 deletions
diff --git a/sos/plugins/activemq.py b/sos/plugins/activemq.py new file mode 100644 index 00000000..c95eb26a --- /dev/null +++ b/sos/plugins/activemq.py @@ -0,0 +1,29 @@ +## Copyright (C) 2014 Red Hat, Inc., Bryn M. Reeves <bmr@redhat.com> +### 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, DebianPlugin, UbuntuPlugin + +class ActiveMq(Plugin, RedHatPlugin, DebianPlugin, UbuntuPlugin): + """MongoDB related information + """ + + plugin_name = 'activemq' + + packages = ('activemq', 'activemq-core') + files = ('/var/log/activemq',) + + def setup(self): + self.add_copy_specs(list(self.files)) + diff --git a/sos/plugins/openshift.py b/sos/plugins/openshift.py index e8949209..536f4efb 100644 --- a/sos/plugins/openshift.py +++ b/sos/plugins/openshift.py @@ -36,7 +36,6 @@ class Openshift(Plugin, RedHatPlugin): if self.option_enabled("broker"): self.add_copy_specs([ - "/var/log/activemq", "/var/log/mongodb", "/var/log/mcollective-client.log", "/var/log/openshift/broker/", |