mirror of
https://github.com/ceph/ceph
synced 2025-04-01 23:02:17 +00:00
ceph_manager: count active+clean+<somjething else> as active+clean
In my case, one pg was active+clean+scrubbing. Signed-off-by: Sage Weil <sage@newdream.net>
This commit is contained in:
parent
409c57170d
commit
b8beff3dd5
@ -209,15 +209,12 @@ class CephManager:
|
||||
return int(match.group(0).split('/')[0])
|
||||
|
||||
def get_num_active_clean(self):
|
||||
status = self.raw_cluster_status()
|
||||
self.log(status)
|
||||
match = re.search(
|
||||
"\d* active.clean",
|
||||
status)
|
||||
if match == None:
|
||||
return 0
|
||||
else:
|
||||
return int(match.group(0).split()[0])
|
||||
pgs = self.get_pg_stats()
|
||||
num = 0
|
||||
for pg in pgs:
|
||||
if pg['state'].startswith('active+clean'):
|
||||
num += 1
|
||||
return num
|
||||
|
||||
def get_num_active(self):
|
||||
pgs = self.get_pg_stats()
|
||||
|
Loading…
Reference in New Issue
Block a user