aboutsummaryrefslogtreecommitdiffstats
path: root/check-health.rsc
diff options
context:
space:
mode:
authorGravatar Christian Hesse <mail@eworm.de>2023-04-20 23:58:24 +0200
committerGravatar Christian Hesse <mail@eworm.de>2023-04-24 22:26:26 +0200
commitb1cb4cb10f74be294fd234459e864cbf2762bae0 (patch)
tree3e5ad63a2dc97544b23ca7f7e782d7223db72a66 /check-health.rsc
parent7ed70bdb2631afe0b9a480ea7b1cc14438dea532 (diff)
check-health: use $FormatLine
Diffstat (limited to 'check-health.rsc')
-rw-r--r--check-health.rsc5
1 files changed, 3 insertions, 2 deletions
diff --git a/check-health.rsc b/check-health.rsc
index e208bac..af0d70b 100644
--- a/check-health.rsc
+++ b/check-health.rsc
@@ -21,6 +21,7 @@
:global CheckHealthVoltagePercent;
:global Identity;
+:global FormatLine;
:global IfThenElse;
:global LogPrintExit2;
:global ScriptLock;
@@ -93,8 +94,8 @@ $ScriptLock $0;
subject=([ $SymbolForNotification ("high-voltage-sign,chart-" . [ $IfThenElse ($NumLast < \
$NumCurr) "in" "de" ] . "creasing") ] . "Health warning: " . $Name); \
message=("The " . $Name . " on " . $Identity . " jumped more than " . $CheckHealthVoltagePercent . "%.\n\n" . \
- "old value: " . ($CheckHealthLast->$Name) . " V\n" . \
- "new value: " . $Value . " V") });
+ [ $FormatLine "old value" ($CheckHealthLast->$Name . " V") ] . "\n" . \
+ [ $FormatLine "new value" ($Value . " V") ]) });
} else={
:if ($NumCurr <= $CheckHealthVoltageLow && $NumLast > $CheckHealthVoltageLow) do={
$SendNotification2 ({ origin=$0; \