check-health: adopt new data structure for ROS 7.x

The PSU state has an empty string for type... Thus matching on name.
This commit is contained in:
Christian Hesse 2021-11-16 13:49:14 +01:00
parent 0ecabfecf7
commit 93770d40a8

View file

@ -24,98 +24,108 @@
:global SendNotification2; :global SendNotification2;
:global SymbolForNotification; :global SymbolForNotification;
:local FormatVoltage do={ :local TempToNum do={
:local Voltage [ :tonum $1 ]; :global CharacterReplace;
:return (($Voltage / 10) . "." . [ :pick $Voltage ([ :len $Voltage ] - 1) ] . "V"); :local T [ :toarray [ $CharacterReplace $1 "." "," ] ];
:return ($T->0 * 10 + $T->1);
} }
:local CheckHealthCurrent [ / system health get ]; :if ([ :len [ / system health find ] ] = 0) do={
:if ([ :len $CheckHealthCurrent ] = 0) do={
$LogPrintExit2 error $0 ("Your device does not provide any health values.") true; $LogPrintExit2 error $0 ("Your device does not provide any health values.") true;
} }
:if ([ :typeof $CheckHealthLast ] != "array") do={
:set CheckHealthLast [ :toarray "" ];
}
:if ([ :typeof $CheckHealthTemperatureNotified ] != "array") do={ :if ([ :typeof $CheckHealthTemperatureNotified ] != "array") do={
:set CheckHealthTemperatureNotified [ :toarray "" ]; :set CheckHealthTemperatureNotified [ :toarray "" ];
} }
$ScriptLock $0; $ScriptLock $0;
:foreach Name,Voltage in=$CheckHealthCurrent do={ :foreach Voltage in=[ / system health find where type="V" ] do={
:if ($Name ~ "(battery|voltage)" && \ :local Name [ / system health get $Voltage name ];
[ :typeof ($CheckHealthLast->$Name) ] = "num" && \ :local Value [ / system health get $Voltage value ];
[ :typeof $Voltage ] = "num") do={
:if ($CheckHealthLast->$Name * (100 + $CheckHealthVoltagePercent) < $Voltage * 100 || \ :if ([ :typeof ($CheckHealthLast->$Name) ] != "nothing") do={
$CheckHealthLast->$Name * 100 > $Voltage * (100 + $CheckHealthVoltagePercent)) do={ :local NumCurr [ $TempToNum $Value ];
:local NumLast [ $TempToNum ($CheckHealthLast->$Name) ];
:if ($NumLast * (100 + $CheckHealthVoltagePercent) < $NumCurr * 100 || \
$NumLast * 100 > $NumCurr * (100 + $CheckHealthVoltagePercent)) do={
$SendNotification2 ({ origin=$0; \ $SendNotification2 ({ origin=$0; \
subject=([ $SymbolForNotification ("high-voltage-sign,chart-" . [ $IfThenElse ($CheckHealthLast->$Name < \ subject=([ $SymbolForNotification ("high-voltage-sign,chart-" . [ $IfThenElse ($NumLast < \
$Voltage) "in" "de" ] . "creasing") ] . "Health warning: " . $Name); \ $NumCurr) "in" "de" ] . "creasing") ] . "Health warning: " . $Name); \
message=("The " . $Name . " on " . $Identity . " jumped more than " . $CheckHealthVoltagePercent . "%.\n\n" . \ message=("The " . $Name . " on " . $Identity . " jumped more than " . $CheckHealthVoltagePercent . "%.\n\n" . \
"old value: " . [ $FormatVoltage ($CheckHealthLast->$Name) ] . "\n" . \ "old value: " . ($CheckHealthLast->$Name) . " V\n" . \
"new value: " . [ $FormatVoltage $Voltage ]) }); "new value: " . $Value . " V") });
} else={ } else={
:if ($Voltage <= $CheckHealthVoltageLow && $CheckHealthLast->$Name > $CheckHealthVoltageLow) do={ :if ($NumCurr <= $CheckHealthVoltageLow && $NumLast > $CheckHealthVoltageLow) do={
$SendNotification2 ({ origin=$0; \ $SendNotification2 ({ origin=$0; \
subject=([ $SymbolForNotification "high-voltage-sign,chart-decreasing" ] . "Health warning: Low " . $Name); \ subject=([ $SymbolForNotification "high-voltage-sign,chart-decreasing" ] . "Health warning: Low " . $Name); \
message=("The " . $Name . " on " . $Identity . " dropped to " . [ $FormatVoltage $Voltage ] . " below hard limit.") }); message=("The " . $Name . " on " . $Identity . " dropped to " . $Value . " V below hard limit.") });
} }
:if ($Voltage > $CheckHealthVoltageLow && $CheckHealthLast->$Name <= $CheckHealthVoltageLow) do={ :if ($NumCurr > $CheckHealthVoltageLow && $NumLast <= $CheckHealthVoltageLow) do={
$SendNotification2 ({ origin=$0; \ $SendNotification2 ({ origin=$0; \
subject=([ $SymbolForNotification "high-voltage-sign,chart-increasing" ] . "Health recovery: Low " . $Name); \ subject=([ $SymbolForNotification "high-voltage-sign,chart-increasing" ] . "Health recovery: Low " . $Name); \
message=("The " . $Name . " on " . $Identity . " recovered to " . [ $FormatVoltage $Voltage ] . " above hard limit.") }); message=("The " . $Name . " on " . $Identity . " recovered to " . $Value . " V above hard limit.") });
} }
} }
} }
:set ($CheckHealthLast->$Name) $Value;
} }
:foreach Name,PSU in=$CheckHealthCurrent do={ :foreach PSU in=[ / system health find where name~"^psu.*-state\$" ] do={
:if ($Name ~ "psu.*-state" && \ :local Name [ / system health get $PSU name ];
[ :typeof ($CheckHealthLast->$Name) ] = "str" && \ :local Value [ / system health get $PSU value ];
[ :typeof $PSU ] = "str") do={
:if ([ :typeof ($CheckHealthLast->$Name) ] != "nothing") do={
:if ($CheckHealthLast->$Name = "ok" && \ :if ($CheckHealthLast->$Name = "ok" && \
$PSU != "ok") do={ $Value != "ok") do={
$SendNotification2 ({ origin=$0; \ $SendNotification2 ({ origin=$0; \
subject=([ $SymbolForNotification "cross-mark" ] . "Health warning: " . $Name); \ subject=([ $SymbolForNotification "cross-mark" ] . "Health warning: " . $Name); \
message=("The power supply unit '" . $Name . "' on " . $Identity . " failed!") }); message=("The power supply unit '" . $Name . "' on " . $Identity . " failed!") });
} }
:if ($CheckHealthLast->$Name != "ok" && \ :if ($CheckHealthLast->$Name != "ok" && \
$PSU = "ok") do={ $Value = "ok") do={
$SendNotification2 ({ origin=$0; \ $SendNotification2 ({ origin=$0; \
subject=([ $SymbolForNotification "white-heavy-check-mark" ] . "Health recovery: " . $Name); \ subject=([ $SymbolForNotification "white-heavy-check-mark" ] . "Health recovery: " . $Name); \
message=("The power supply unit '" . $Name . "' on " . $Identity . " recovered!") }); message=("The power supply unit '" . $Name . "' on " . $Identity . " recovered!") });
} }
} }
:set ($CheckHealthLast->$Name) $Value;
} }
:foreach Name,Temperature in=$CheckHealthCurrent do={ :foreach Temperature in=[ / system health find where type="C" ] do={
:if ($Name ~ "temperature" && \ :local Name [ / system health get $Temperature name ];
[ :typeof $Temperature ] = "num") do={ :local Value [ / system health get $Temperature value ];
:if ([ :typeof ($CheckHealthLast->$Name) ] != "nothing") do={
:if ([ :typeof ($CheckHealthTemperature->$Name) ] != "num" ) do={ :if ([ :typeof ($CheckHealthTemperature->$Name) ] != "num" ) do={
$LogPrintExit2 info $0 ("No threshold given for " . $Name . ", assuming 50C.") false; $LogPrintExit2 info $0 ("No threshold given for " . $Name . ", assuming 50C.") false;
:set ($CheckHealthTemperature->$Name) 50; :set ($CheckHealthTemperature->$Name) 50;
} }
:local Validate [ / system health get $Name ]; :local Validate [ / system health get [ find where name=$Name ] value ];
:while ($Temperature != $Validate) do={ :while ($Value != $Validate) do={
:set Temperature $Validate; :set Value $Validate;
:set Validate [ / system health get $Name ]; :set Validate [ / system health get [ find where name=$Name ] value ];
} }
:if ($Temperature > $CheckHealthTemperature->$Name && \ :if ($Value > $CheckHealthTemperature->$Name && \
$CheckHealthTemperatureNotified->$Name != true) do={ $CheckHealthTemperatureNotified->$Name != true) do={
$SendNotification2 ({ origin=$0; \ $SendNotification2 ({ origin=$0; \
subject=([ $SymbolForNotification "fire" ] . "Health warning: " . $Name); \ subject=([ $SymbolForNotification "fire" ] . "Health warning: " . $Name); \
message=("The " . $Name . " on " . $Identity . " is above threshold: " . \ message=("The " . $Name . " on " . $Identity . " is above threshold: " . \
$Temperature . "\C2\B0" . "C") }); $Value . "\C2\B0" . "C") });
:set ($CheckHealthTemperatureNotified->$Name) true; :set ($CheckHealthTemperatureNotified->$Name) true;
} }
:if ($Temperature <= ($CheckHealthTemperature->$Name - $CheckHealthTemperatureDeviation) && \ :if ($Value <= ($CheckHealthTemperature->$Name - $CheckHealthTemperatureDeviation) && \
$CheckHealthTemperatureNotified->$Name = true) do={ $CheckHealthTemperatureNotified->$Name = true) do={
$SendNotification2 ({ origin=$0; \ $SendNotification2 ({ origin=$0; \
subject=([ $SymbolForNotification "white-heavy-check-mark" ] . "Health recovery: " . $Name); \ subject=([ $SymbolForNotification "white-heavy-check-mark" ] . "Health recovery: " . $Name); \
message=("The " . $Name . " on " . $Identity . " dropped below threshold: " . \ message=("The " . $Name . " on " . $Identity . " dropped below threshold: " . \
$Temperature . "\C2\B0" . "C") }); $Value . "\C2\B0" . "C") });
:set ($CheckHealthTemperatureNotified->$Name) false; :set ($CheckHealthTemperatureNotified->$Name) false;
} }
} }
:set ($CheckHealthLast->$Name) $Value;
} }
:set CheckHealthLast $CheckHealthCurrent;