Add dead node states to status
This commit is contained in:
parent
bd8536d9d1
commit
670596ed8e
|
@ -131,7 +131,8 @@ def getClusterInformation(zk_conn):
|
||||||
node_state_combinations = [
|
node_state_combinations = [
|
||||||
'run,ready', 'run,flush', 'run,flushed', 'run,unflush',
|
'run,ready', 'run,flush', 'run,flushed', 'run,unflush',
|
||||||
'init,ready', 'init,flush', 'init,flushed', 'init,unflush',
|
'init,ready', 'init,flush', 'init,flushed', 'init,unflush',
|
||||||
'stop,ready', 'stop,flush', 'stop,flushed', 'stop,unflush'
|
'stop,ready', 'stop,flush', 'stop,flushed', 'stop,unflush',
|
||||||
|
'dead,ready', 'dead,flush', 'dead,flushed', 'dead,unflush'
|
||||||
]
|
]
|
||||||
vm_state_combinations = [
|
vm_state_combinations = [
|
||||||
'start', 'restart', 'shutdown', 'stop', 'disable', 'fail', 'migrate', 'unmigrate', 'provision'
|
'start', 'restart', 'shutdown', 'stop', 'disable', 'fail', 'migrate', 'unmigrate', 'provision'
|
||||||
|
|
Loading…
Reference in New Issue