diff options
-rw-r--r-- | sos/plugins/ceph.py | 11 |
1 files 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") |