83 lines
2.9 KiB
Python
83 lines
2.9 KiB
Python
class HostGroupException(Exception):
|
|
def __init__(self, msg):
|
|
self.msg = msg
|
|
|
|
def __str__(self):
|
|
return repr(self.msg)
|
|
|
|
class HostGroupMissingArgumentException(HostGroupException):
|
|
def __init__(self, missingArgument, hostgroupName):
|
|
super(HostGroupMissingArgumentException, self).__init__("no " + missingArgument + " defined for Hostgroup " + hostgroupName)
|
|
|
|
class HostGroup:
|
|
def __init__(self, name, **kwargs):
|
|
self.name = name
|
|
|
|
tmp = "members"
|
|
if not tmp in kwargs:
|
|
raise HostGroupMissingArgumentException(tmp, name)
|
|
self.members = kwargs[tmp]
|
|
|
|
tmp = "hosts"
|
|
if not tmp in kwargs:
|
|
raise HostGroupMissingArgumentException(tmp, name)
|
|
self.hosts = kwargs[tmp]
|
|
|
|
tmp = "services"
|
|
if not tmp in kwargs:
|
|
raise HostGroupMissingArgumentException(tmp, name)
|
|
self.services = kwargs[tmp]
|
|
|
|
|
|
def get_members(self):
|
|
return self.members
|
|
|
|
|
|
def __str__(self):
|
|
ret = "HostGroup: " + self.name + " threshold: " + str(self.threshold) + " parent: " + self.parent + "\n"
|
|
ret += "members: {\n"
|
|
for itm in self.members:
|
|
ret += str(itm) + "\n"
|
|
ret += "}\n"
|
|
ret += "hosts: {\n"
|
|
for itm in self.hosts:
|
|
ret += str(itm) + "\n"
|
|
ret += "}\n"
|
|
ret += "services: {\n"
|
|
for itm in self.services:
|
|
ret += str(itm) + "\n"
|
|
ret += "}\n"
|
|
return ret
|
|
|
|
|
|
class HostGroupService:
|
|
def __init__(self, services, periods):
|
|
self.services = services
|
|
self.periods = periods
|
|
|
|
def __str__(self):
|
|
return "HostgroupService { " + str([str(s) for s in self.services]) + ", " + str([p.name for p in self.periods]) + "}"
|
|
|
|
|
|
def parseHostGroupList(hostgroups, hosts, members, periods, services, log):
|
|
parsedHostGroups = []
|
|
for hgname, hgValues in hostgroups.items():
|
|
hostGroup = HostGroup(hgname)
|
|
hostGroup.members = [m for m in members if m.nameid in hgValues['members']]
|
|
hostGroup.hosts = [h for h in hosts if h.name in hgValues['hosts']]
|
|
hostGroup.threshold = hgValues['threshold']
|
|
if 'parent' in hgValues:
|
|
hostGroup.parent = hgValues['parent']
|
|
hostGroup.services = []
|
|
for serviceName, servicePeriods in hgValues['services'].items():
|
|
services = []
|
|
for host in hosts:
|
|
service = host.getHostServiceByName(serviceName)
|
|
if service is not None:
|
|
services.append(service)
|
|
else:
|
|
log.w("could not find HostService(" + str(serviceName) + ") for host " + host.name)
|
|
hostGroupPeriods = [p for p in periods if p.name in servicePeriods]
|
|
hostGroup.services.append(HostGroupService(services, hostGroupPeriods))
|
|
parsedHostGroups.append(hostGroup)
|
|
return parsedHostGroups
|