show watched hosts in bold
This commit is contained in:
@@ -967,6 +967,7 @@ if 1 and os.path.exists(pickfile):
|
|||||||
hbdclass.Connection.htab = {}
|
hbdclass.Connection.htab = {}
|
||||||
for h in list(hbdclass.Host.hosts.keys()):
|
for h in list(hbdclass.Host.hosts.keys()):
|
||||||
hbdclass.Host.hosts[h].dyn = h in dyndnshosts
|
hbdclass.Host.hosts[h].dyn = h in dyndnshosts
|
||||||
|
hbdclass.Host.hosts[h].watched = h in watchhosts
|
||||||
hbdclass.Host.hosts[h].fixup()
|
hbdclass.Host.hosts[h].fixup()
|
||||||
for h in drophosts:
|
for h in drophosts:
|
||||||
if h in hbdclass.Host.hosts:
|
if h in hbdclass.Host.hosts:
|
||||||
|
|||||||
@@ -167,6 +167,7 @@ class Host:
|
|||||||
Host.hosts[name] = self
|
Host.hosts[name] = self
|
||||||
self.num = num
|
self.num = num
|
||||||
self.dyn = False
|
self.dyn = False
|
||||||
|
self.watched = False
|
||||||
self.upcount = 0
|
self.upcount = 0
|
||||||
self.interval = 0
|
self.interval = 0
|
||||||
self.doesack = -1
|
self.doesack = -1
|
||||||
@@ -181,6 +182,8 @@ class Host:
|
|||||||
d['name'] = self.name
|
d['name'] = self.name
|
||||||
if self.dyn:
|
if self.dyn:
|
||||||
d['name'] += "*"
|
d['name'] += "*"
|
||||||
|
if self.watched:
|
||||||
|
d['name'] = "<b>%s</b>" % d['name']
|
||||||
d['dyn'] = str(self.dyn)
|
d['dyn'] = str(self.dyn)
|
||||||
d['ver'] = str(self.cver)
|
d['ver'] = str(self.cver)
|
||||||
d['num'] = self.num
|
d['num'] = self.num
|
||||||
|
|||||||
Reference in New Issue
Block a user