From a27638294cc3c893cfbf635f46032f54785f733d Mon Sep 17 00:00:00 2001 From: Michael Thies Date: Fri, 22 Dec 2023 22:24:21 +0100 Subject: [PATCH] Fix code format --- shc/util/check_shc.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/shc/util/check_shc.py b/shc/util/check_shc.py index e6600bc4..917e20b3 100644 --- a/shc/util/check_shc.py +++ b/shc/util/check_shc.py @@ -89,11 +89,11 @@ def exit_with_report(status: "ServiceStatus", message: str = "", long_message: s def get_arg_parser() -> argparse.ArgumentParser: arg_parser = argparse.ArgumentParser(description=""" Nagios-compatible monitoring plugin for monitoring an SHC server via the monitoring endpoint of the web interface - + By default, the script checks the HTTP reachability of the server and the overall status reported by the server (see SHC documentation about "Monitoring via HTTP" for more details). If the server is not reachable, the status is reported as UNKNOWN (exit code 3). Otherwise, the status from the server is reported as is. - + If the --interface option is given, the status of the specific SHC interface is reported instead, or UNKNOWN if the server is not reachable or the interface does not exist. """)