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
01fd3c2d66
commit
cad597868f
1 changed files with 12 additions and 4 deletions
|
@ -1,9 +1,7 @@
|
||||||
import os, json
|
import os, json, re
|
||||||
from clusterman.config import CONF
|
from clusterman.config import CONF
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
def info():
|
def info():
|
||||||
nodes=None
|
nodes=None
|
||||||
if os.path.exists(CONF.NODE_FILE):
|
if os.path.exists(CONF.NODE_FILE):
|
||||||
|
@ -22,7 +20,17 @@ def info():
|
||||||
# Groups
|
# Groups
|
||||||
print("Node groups: ",end="")
|
print("Node groups: ",end="")
|
||||||
if len(CONF["cluster"]["groups"]) > 0:
|
if len(CONF["cluster"]["groups"]) > 0:
|
||||||
print(",".join(CONF["cluster"]["groups"].keys()))
|
pattern=None
|
||||||
|
for group in CONF["cluster"]["groups"].keys():
|
||||||
|
if not pattern == None:
|
||||||
|
print(", ", end="")
|
||||||
|
pattern = re.compile(CONF["cluster"]["groups"][group])
|
||||||
|
count=0
|
||||||
|
for ip in nodes:
|
||||||
|
if pattern.match(ip):
|
||||||
|
count=count+1
|
||||||
|
print("{}({})".format(group,count),end="")
|
||||||
|
print()
|
||||||
else:
|
else:
|
||||||
print("NA")
|
print("NA")
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue