Last active
August 29, 2015 14:08
-
-
Save linuxkidd/bca42497d84b55124a67 to your computer and use it in GitHub Desktop.
Duplicate osd dump from ceph report (piped in)
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python | |
import sys | |
import simplejson as json | |
obj=json.load(sys.stdin) | |
for field in [ 'epoch', 'fsid', 'created','modified']: | |
print field+' '+str(obj['osdmap'][field]); | |
print ''; | |
for pool in obj['osdmap']['pools']: | |
outline='pool '+str(pool['pool'])+' '+pool['pool_name']; | |
for field in ['size','min_size','crush_ruleset','object_hash','pg_num','pg_placement_num','last_change','flags','stripe_width']: | |
if field in pool: | |
outline+=' '+field.replace('pg_placement_num','pgp_num')+' '+str(pool[field]); | |
print outline; | |
print '' | |
for osd in obj['osdmap']['osds']: | |
outline='osd.'+str(osd['osd']) | |
if osd['up']: | |
outline+=' up' | |
else: | |
outline+=' down' | |
if osd['in']: | |
outline+=' in' | |
else: | |
outline+=' out' | |
for field in ['weight','up_from','up_thru','down_ad']: | |
if field in osd: | |
outline+=' '+field+' '+str(osd[field]) | |
outline+=' last_clean_interval ('+str(osd['last_clean_begin'])+','+str(osd['last_clean_end'])+') ' | |
for field in ['public_addr','cluster_addr','heartbeat_back_addr','heartbeat_front_addr']: | |
if field in osd: | |
outline+=' '+osd[field] | |
outline+=' '+osd['state'][0]+','+osd['state'][1]+' '+osd['uuid'] | |
print outline | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment