From 407641b1d5b157ada46694dd81183fb962dc4831 Mon Sep 17 00:00:00 2001 From: Dirk Alders Date: Wed, 21 Aug 2024 09:21:39 +0200 Subject: [PATCH] status.py: Fix for exception while stopped nagios service --- status.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/status.py b/status.py index d5b83a8..1bf8fd1 100644 --- a/status.py +++ b/status.py @@ -184,7 +184,7 @@ class __nagios_status__(dict): 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_SERVICELIST = 'servicelist' @@ -218,6 +218,8 @@ if __name__ == "__main__": s = nagios_status(args.hostname, args.secure, args.last) except requests.ConnectionError: 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: if args.all: print(s.__str__(color=not args.monochrome))