Write Ceph status data to ZK
This commit is contained in:
parent
b65472aa83
commit
4422eb8941
|
@ -408,6 +408,7 @@ current_primary = zkhandler.readdata(zk_conn, '/primary_node')
|
||||||
if current_primary and current_primary != 'none':
|
if current_primary and current_primary != 'none':
|
||||||
logger.out('Current primary node is {}{}{}.'.format(logger.fmt_blue, current_primary, logger.fmt_end), state='i')
|
logger.out('Current primary node is {}{}{}.'.format(logger.fmt_blue, current_primary, logger.fmt_end), state='i')
|
||||||
else:
|
else:
|
||||||
|
if config['daemon_mode'] == 'coordinator':
|
||||||
logger.out('No primary node found; creating with us as primary.', state='i')
|
logger.out('No primary node found; creating with us as primary.', state='i')
|
||||||
zkhandler.writedata(zk_conn, { '/primary_node': myhostname })
|
zkhandler.writedata(zk_conn, { '/primary_node': myhostname })
|
||||||
|
|
||||||
|
@ -698,6 +699,18 @@ def update_zookeeper():
|
||||||
if domain_uuid not in this_node.domain_list:
|
if domain_uuid not in this_node.domain_list:
|
||||||
this_node.domain_list.append(domain_uuid)
|
this_node.domain_list.append(domain_uuid)
|
||||||
|
|
||||||
|
# Set ceph health information in zookeeper (primary only)
|
||||||
|
if this_node.router_state == 'primary':
|
||||||
|
retcode, stdout, stderr = common.run_os_command('ceph status')
|
||||||
|
ceph_status = stdout
|
||||||
|
try:
|
||||||
|
zkhandler.writedata(zk_conn, {
|
||||||
|
'/ceph': str(ceph_status)
|
||||||
|
})
|
||||||
|
except:
|
||||||
|
logger.out('Failed to set Ceph status data', state='e')
|
||||||
|
return
|
||||||
|
|
||||||
# Set our information in zookeeper
|
# Set our information in zookeeper
|
||||||
#this_node.name = lv_conn.getHostname()
|
#this_node.name = lv_conn.getHostname()
|
||||||
this_node.memused = int(psutil.virtual_memory().used / 1024 / 1024)
|
this_node.memused = int(psutil.virtual_memory().used / 1024 / 1024)
|
||||||
|
|
Loading…
Reference in New Issue