status.py: Fix for exception while stopped nagios service
This commit is contained in:
parent
930f4d13e1
commit
407641b1d5
@ -184,7 +184,7 @@ class __nagios_status__(dict):
|
|||||||
|
|
||||||
|
|
||||||
class nagios_status(__nagios_status__):
|
class nagios_status(__nagios_status__):
|
||||||
URL = "nagios4/cgi-bin/statusjson.cgi?query=servicelist&details=true" # &servicestatus=warning"
|
URL = "nagios4/cgi-bin/statusjson.cgi?query=servicelist&details=true"
|
||||||
KEY_DATA = 'data'
|
KEY_DATA = 'data'
|
||||||
KEY_SERVICELIST = 'servicelist'
|
KEY_SERVICELIST = 'servicelist'
|
||||||
|
|
||||||
@ -218,6 +218,8 @@ if __name__ == "__main__":
|
|||||||
s = nagios_status(args.hostname, args.secure, args.last)
|
s = nagios_status(args.hostname, args.secure, args.last)
|
||||||
except requests.ConnectionError:
|
except requests.ConnectionError:
|
||||||
print(headline(not args.monochrome) + "Can not connect to given host.")
|
print(headline(not args.monochrome) + "Can not connect to given host.")
|
||||||
|
except requests.exceptions.JSONDecodeError:
|
||||||
|
print(headline(not args.monochrome) + "No data received. Nagios is possibly down.")
|
||||||
else:
|
else:
|
||||||
if args.all:
|
if args.all:
|
||||||
print(s.__str__(color=not args.monochrome))
|
print(s.__str__(color=not args.monochrome))
|
||||||
|
Loading…
x
Reference in New Issue
Block a user