add entity metric

This commit is contained in:
Joshua Grimm 2019-11-05 21:08:19 +00:00
parent bd29915e55
commit e8f960a781

View file

@ -35,8 +35,11 @@ class MinecraftCollector(object):
overall_tps = Metric('overall_tps','overall TPS',"counter") overall_tps = Metric('overall_tps','overall TPS',"counter")
overall_ticktime = Metric('overall_ticktime',"overall Ticktime","counter") overall_ticktime = Metric('overall_ticktime',"overall Ticktime","counter")
player_online = Metric('player_online',"is 1 if player is online","counter") player_online = Metric('player_online',"is 1 if player is online","counter")
entities = Metric('entities',"type and count of active entites", "counter")
mcr = MCRcon(os.environ['RCON_HOST'],os.environ['RCON_PASSWORD'],port=int(os.environ['RCON_PORT'])) mcr = MCRcon(os.environ['RCON_HOST'],os.environ['RCON_PASSWORD'],port=int(os.environ['RCON_PORT']))
mcr.connect() mcr.connect()
# dimensions
resp = mcr.command("forge tps") resp = mcr.command("forge tps")
dimtpsregex = re.compile("Dim\s*(-*\d*)\s\((.*?)\)\s:\sMean tick time:\s(.*?) ms\. Mean TPS: (\d*\.\d*)") dimtpsregex = re.compile("Dim\s*(-*\d*)\s\((.*?)\)\s:\sMean tick time:\s(.*?) ms\. Mean TPS: (\d*\.\d*)")
for dimid, dimname, meanticktime, meantps in dimtpsregex.findall(resp): for dimid, dimname, meanticktime, meantps in dimtpsregex.findall(resp):
@ -45,13 +48,24 @@ class MinecraftCollector(object):
overallregex = re.compile("Overall : Mean tick time: (.*) ms. Mean TPS: (.*)") overallregex = re.compile("Overall : Mean tick time: (.*) ms. Mean TPS: (.*)")
overall_tps.add_sample('overall_tps',value=overallregex.findall(resp)[0][1],labels={}) overall_tps.add_sample('overall_tps',value=overallregex.findall(resp)[0][1],labels={})
overall_ticktime.add_sample('overall_ticktime',value=overallregex.findall(resp)[0][0],labels={}) overall_ticktime.add_sample('overall_ticktime',value=overallregex.findall(resp)[0][0],labels={})
# entites
resp = mcr.command("forge entity list")
print("entites")
print(resp)
entityregex = re.compile("(\d+): (.*?:.*?)\s")
for entitycount, entityname in entityregex.findall(resp):
entities.add_sample('entities',value=entitycount,labels={'entity':entityname})
# player
resp = mcr.command("list") resp = mcr.command("list")
playerregex = re.compile("There are \d*\/20 players online:(.*)") playerregex = re.compile("There are \d*\/20 players online:(.*)")
if playerregex.findall(resp): if playerregex.findall(resp):
for player in playerregex.findall(resp)[0].split(","): for player in playerregex.findall(resp)[0].split(","):
if player: if player:
player_online.add_sample('player_online',value=1,labels={'player':player.lstrip()}) player_online.add_sample('player_online',value=1,labels={'player':player.lstrip()})
return[dim_tps,dim_ticktime,overall_tps,overall_ticktime,player_online]
return[dim_tps,dim_ticktime,overall_tps,overall_ticktime,player_online,entities]
def get_player_stats(self,uuid): def get_player_stats(self,uuid):