aboutsummaryrefslogtreecommitdiffstats
path: root/sos/plugins/qpidd.py
blob: aa343ad7cabe5623fac0d7015caddde75715164b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
## 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 qpidd(Plugin, RedHatPlugin):
    """Messaging related information
    """

    packages = ('qpidd', 'qpid-cpp-server', 'qpid-tools')

    def setup(self):
        """ performs data collection for mrg """
        self.collectExtOutput("/usr/bin/qpid-stat -e")
        self.collectExtOutput("/usr/bin/qpid-stat -b")
        self.collectExtOutput("/usr/bin/qpid-config")
        self.collectExtOutput("/usr/bin/qpid-config -b exchanges")
        self.collectExtOutput("/usr/bin/qpid-config -b queues")
        self.collectExtOutput("/usr/bin/qpid-stat -c")
        self.collectExtOutput("/usr/bin/qpid-route link list")
        self.collectExtOutput("/usr/bin/qpid-route route list")
        self.collectExtOutput("/bin/ls -lanR /var/lib/qpidd")

        self.addCopySpecs([
            "/etc/qpidd.conf",
            "/var/lib/qpid/syslog",
            "/etc/ais/openais.conf",
            "/var/log/cumin.log",
            "/var/log/mint.log"
            "/etc/sasl2/qpidd.conf",
            "/etc/qpid/qpidc.conf",
            "/etc/sesame/sesame.conf",
            "/etc/cumin/cumin.conf",
            "/etc/corosync/corosync.conf",
            "/var/lib/sesame",
            "/var/log/qpidd.log",
            "/var/log/sesame",
            "/var/log/cumin",
            "/var/log/cluster"])