From 24ecc933d109c0eba120b434d08aa560e9a56869 Mon Sep 17 00:00:00 2001 From: Pavel Moravec Date: Wed, 1 Jul 2015 12:15:41 +0200 Subject: [ceph] add logs, report and calamari conf Update ceph commands and add log and configuration file collection for calamari and radosgw. Resolves: #496 Resolves: rhbz#1210527 Signed-off-by: Brad Hubbard Signed-off-by: Pavel Moravec Signed-off-by: Bryn M. Reeves --- sos/plugins/ceph.py | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/sos/plugins/ceph.py b/sos/plugins/ceph.py index 52b8fff8..0bfdbe08 100644 --- a/sos/plugins/ceph.py +++ b/sos/plugins/ceph.py @@ -37,17 +37,22 @@ class Ceph(Plugin, RedHatPlugin, UbuntuPlugin): def setup(self): self.add_copy_spec([ "/etc/ceph/", - "/var/log/ceph/" + "/var/log/ceph/", + "/etc/calamari/", + "/var/log/calamari", + "/var/log/radosgw" ]) self.add_cmd_output([ "ceph status", - "ceph health", + "ceph health detail", "ceph osd tree", "ceph osd stat", "ceph osd dump", "ceph mon stat", - "ceph mon dump" + "ceph mon dump", + "ceph df", + "ceph report" ]) self.add_forbidden_path("/etc/ceph/*keyring") -- cgit