diff options
author | Bryn M. Reeves <bmr@redhat.com> | 2014-04-14 19:45:48 +0100 |
---|---|---|
committer | Pep Turro Mauri <pep@redhat.com> | 2014-06-26 22:19:07 +0200 |
commit | 7d669f927dfa04012166cdf79c331bae3529cd21 (patch) | |
tree | ccbe042f2a50a918a17fc2bec97f9e23a9457a35 | |
parent | 2ba850f752a68f5c18393230d4df7f2f713f3e70 (diff) | |
download | sos-7d669f927dfa04012166cdf79c331bae3529cd21.tar.gz |
Add ActiveMQ plugin
Add a plugin for the Apache ActiveMQ messaging server:
http://activemq.apache.org/
Remove ActiveMQ log collection from the OpenShift plugin.
Signed-off-by: Bryn M. Reeves <bmr@redhat.com>
-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/", |