Add health delta change to message output

This commit is contained in:
Joshua Boniface 2023-02-22 14:57:45 -05:00
parent 118237a53b
commit e45b3108a2
1 changed files with 1 additions and 1 deletions

View File

@ -359,7 +359,7 @@ class MonitoringInstance(object):
for result in sorted(plugin_results, key=lambda x: x.plugin_name):
if self.config["log_keepalive_plugin_details"]:
self.logger.out(
result.message,
result.message + f" [-{result.health_delta}]",
state="t",
prefix=f"{result.plugin_name} ({result.runtime}s)",
)