Add dead node states to status

This commit is contained in:
Joshua Boniface 2020-02-15 18:51:02 -05:00
parent bd8536d9d1
commit 670596ed8e
1 changed files with 2 additions and 1 deletions

View File

@ -131,7 +131,8 @@ def getClusterInformation(zk_conn):
node_state_combinations = [
'run,ready', 'run,flush', 'run,flushed', 'run,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 = [
'start', 'restart', 'shutdown', 'stop', 'disable', 'fail', 'migrate', 'unmigrate', 'provision'