diff options
-rw-r--r-- | sos/report/plugins/ceph_mon.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sos/report/plugins/ceph_mon.py b/sos/report/plugins/ceph_mon.py index 81d3cb12..f281dc6d 100644 --- a/sos/report/plugins/ceph_mon.py +++ b/sos/report/plugins/ceph_mon.py @@ -164,7 +164,7 @@ class CephMON(Plugin, RedHatPlugin, UbuntuPlugin): def get_ceph_ids(self): ceph_ids = [] # ceph version 14 correlates to RHCS 4 - if self.ceph_version == 14: + if self.ceph_version == 14 or self.ceph_version == 15: # Get the ceph user processes out = self.exec_cmd('ps -u ceph -o args') |