From a9e7713abf2d0bf7cf601cf35a16d30280cbd74f Mon Sep 17 00:00:00 2001 From: "Joshua M. Boniface" Date: Wed, 22 Feb 2023 14:57:45 -0500 Subject: [PATCH] Add health delta change to message output --- node-daemon/pvcnoded/objects/MonitoringInstance.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/node-daemon/pvcnoded/objects/MonitoringInstance.py b/node-daemon/pvcnoded/objects/MonitoringInstance.py index 2a44fcc1..58cde66b 100644 --- a/node-daemon/pvcnoded/objects/MonitoringInstance.py +++ b/node-daemon/pvcnoded/objects/MonitoringInstance.py @@ -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)", )