fix showing acknowledgements for services
This commit is contained in:
parent
0773db6933
commit
16c4f37935
1 changed files with 2 additions and 2 deletions
4
service
4
service
|
@ -111,7 +111,7 @@ def regenerate():
|
||||||
if not CONFIG['show_ack']:
|
if not CONFIG['show_ack']:
|
||||||
continue
|
continue
|
||||||
|
|
||||||
ack = 'ACKNOWLEDGED'
|
ack = '[ACK] '
|
||||||
else:
|
else:
|
||||||
ack = ''
|
ack = ''
|
||||||
|
|
||||||
|
@ -120,7 +120,7 @@ def regenerate():
|
||||||
|
|
||||||
services['services'].append({
|
services['services'].append({
|
||||||
'host': svc['attrs']['host_name'],
|
'host': svc['attrs']['host_name'],
|
||||||
'service': svc['attrs']['display_name'],
|
'service': ack + svc['attrs']['display_name'],
|
||||||
'state': int(svc['attrs']['state']),
|
'state': int(svc['attrs']['state']),
|
||||||
'type': int(svc['attrs']['state_type']),
|
'type': int(svc['attrs']['state_type']),
|
||||||
'output': limit_output_lines(svc['attrs']['last_check_result']['output'].splitlines()),
|
'output': limit_output_lines(svc['attrs']['last_check_result']['output'].splitlines()),
|
||||||
|
|
Loading…
Reference in a new issue