diff options
author | Christian Hesse <mail@eworm.de> | 2021-11-16 14:53:25 +0100 |
---|---|---|
committer | Christian Hesse <mail@eworm.de> | 2021-11-16 22:21:37 +0100 |
commit | d87c50cf68356e02e89620e445981776c7b4f4c3 (patch) | |
tree | 064cbfb02f799026576e0ee62e34038274d8f683 /check-health | |
parent | 185fe2c73035b66b2c8e0048eedca47fd438e3e6 (diff) |
check-health: indicate voltage increase or decrease
Diffstat (limited to 'check-health')
-rw-r--r-- | check-health | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/check-health b/check-health index bf0e441..9fef8bc 100644 --- a/check-health +++ b/check-health @@ -17,6 +17,7 @@ :global CheckHealthVoltagePercent; :global Identity; +:global IfThenElse; :global LogPrintExit2; :global ScriptLock; :global SendNotification2; @@ -46,7 +47,8 @@ $ScriptLock $0; :if ($CheckHealthLast->$Name * (100 + $CheckHealthVoltagePercent) < $Voltage * 100 || \ $CheckHealthLast->$Name * 100 > $Voltage * (100 + $CheckHealthVoltagePercent)) do={ $SendNotification2 ({ origin=$0; \ - subject=([ $SymbolForNotification "high-voltage-sign" ] . "Health warning: " . $Name); \ + subject=([ $SymbolForNotification ("high-voltage-sign,chart-" . [ $IfThenElse ($CheckHealthLast->$Name < \ + $Voltage) "in" "de" ] . "creasing") ] . "Health warning: " . $Name); \ message=("The " . $Name . " on " . $Identity . " jumped more than " . $CheckHealthVoltagePercent . "%.\n\n" . \ "old value: " . [ $FormatVoltage ($CheckHealthLast->$Name) ] . "\n" . \ "new value: " . [ $FormatVoltage $Voltage ]) }); |