mirror of
https://gitlab.com/manzerbredes/clusterman.git
synced 2025-04-05 11:36:25 +02:00
Minor changes
This commit is contained in:
parent
9a3523d659
commit
01fd3c2d66
1 changed files with 8 additions and 0 deletions
|
@ -19,6 +19,14 @@ def info():
|
|||
print("Node count: ",end="")
|
||||
print("NA") if nodes==None else print(len(nodes))
|
||||
|
||||
# Groups
|
||||
print("Node groups: ",end="")
|
||||
if len(CONF["cluster"]["groups"]) > 0:
|
||||
print(",".join(CONF["cluster"]["groups"].keys()))
|
||||
else:
|
||||
print("NA")
|
||||
|
||||
|
||||
# Cache
|
||||
print("Last node scan: ",end="")
|
||||
if cache!=None and "last_scan" in CONF["cache"]:
|
||||
|
|
Loading…
Add table
Reference in a new issue