Skip to content
Snippets Groups Projects
Commit 5cf1c500 authored by nimrod's avatar nimrod
Browse files

Change the notification format.

I find this format to be better.
parent e4d9bd1e
No related branches found
No related tags found
No related merge requests found
Pipeline #2061 passed
......@@ -112,15 +112,15 @@ def main(): # noqa: MC0001
elif check.ExitCode == nagios.NagiosCode.WARNING:
logging.info("Check status is WARNING.")
if args.warn and not args.dry_run:
notify(f"{check.Output} on {HOSTNAME}.")
notify(f"({HOSTNAME} {check.Output}")
elif check.ExitCode == nagios.NagiosCode.CRITICAL:
logging.info("Check status is CRITICAL.")
if not args.dry_run:
notify(f"{check.Output} on {HOSTNAME}.")
notify(f"({HOSTNAME} {check.Output}")
elif check.ExitCode == nagios.NagiosCode.UNKNOWN:
logging.info("Check status is UNKNOWN.")
if args.unknown and not args.dry_run:
notify(f"{check.Output} on {HOSTNAME}.")
notify(f"({HOSTNAME} {check.Output}")
else:
logging.info(
f"Check status is invalid for a Nagios plugin ({check.ExitCode})."
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment