mirror of
https://gitlab.com/manzerbredes/clusterman.git
synced 2025-04-06 03:56:27 +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("Node count: ",end="")
|
||||||
print("NA") if nodes==None else print(len(nodes))
|
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
|
# Cache
|
||||||
print("Last node scan: ",end="")
|
print("Last node scan: ",end="")
|
||||||
if cache!=None and "last_scan" in CONF["cache"]:
|
if cache!=None and "last_scan" in CONF["cache"]:
|
||||||
|
|
Loading…
Add table
Reference in a new issue