aboutsummaryrefslogtreecommitdiffstats
path: root/check-health
diff options
context:
space:
mode:
authorGravatar Christian Hesse <mail@eworm.de>2019-08-27 10:35:53 +0200
committerGravatar Christian Hesse <mail@eworm.de>2019-08-27 12:01:32 +0200
commit29dc1b884154d14b45ebf7471f59ec0755bab549 (patch)
tree359f21640b3c2d3823a2883c7f43bb2e0c108bc1 /check-health
parent44437c6846e4385b0c33975815deaa8f5c0757f1 (diff)
add script 'check-health'change-7
This may be incomplete... Please report if you have missing PSUs, ttemperature sensors, whatever.
Diffstat (limited to 'check-health')
-rw-r--r--check-health57
1 files changed, 57 insertions, 0 deletions
diff --git a/check-health b/check-health
new file mode 100644
index 0000000..b69ae4a
--- /dev/null
+++ b/check-health
@@ -0,0 +1,57 @@
+#!rsc
+# RouterOS script: check-health
+# Copyright (c) 2019 Christian Hesse <mail@eworm.de>
+#
+# check for RouterOS health state
+
+:global CheckHealthLast;
+:global CheckHealthTemperature;
+:global Identity;
+
+:global SendNotification;
+
+:local FormatVoltage do={
+ :local Voltage [ :tonum $1 ];
+ :return (($Voltage / 10) . "." . ($Voltage % ($Voltage / 10 * 10)) . "V");
+}
+
+:local CheckHealthCurrent [ / system health get ];
+
+:foreach Voltage in={ "psu1-voltage"; "psu2-voltage"; "voltage" } do={
+ :if ([ :typeof ($CheckHealthLast->$Voltage) ] = "num" && \
+ [ :typeof ($CheckHealthCurrent->$Voltage) ] = "num") do={
+ :if ($CheckHealthLast->$Voltage * 115 / 100 < $CheckHealthCurrent->$Voltage || \
+ $CheckHealthLast->$Voltage * 100 / 115 > $CheckHealthCurrent->$Voltage) do={
+ $SendNotification ("Health warning: " . $Voltage) \
+ ("The " . $Voltage . " on " . $Identity . " jumped more than 15%.\n\n" . \
+ "old value: " . [ $FormatVoltage ($CheckHealthLast->$Voltage) ] . "\n" . \
+ "new value: " . [ $FormatVoltage ($CheckHealthCurrent->$Voltage) ]);
+ }
+ }
+}
+
+:foreach PSU in={ "psu1"; "psu2" } do={
+ :if ($CheckHealthLast->($PSU . "-state") = "ok" && \
+ $CheckHealthCurrent->($PSU . "-state") != "ok") do={
+ $SendNotification ("Health warning: " . $PSU . " state") \
+ ("The power supply unit '" . $PSU . "' on " . $Identity . " failed!");
+ }
+}
+
+:foreach Temperature in={ "temperature"; "cpu-temperature"; "board-temperature1"; "board-temperature2" } do={
+ :if ([ :typeof ($CheckHealthLast->$Temperature) ] = "num" && \
+ [ :typeof ($CheckHealthCurrent->$Temperature) ] = "num") do={
+ :if ([ :typeof ($CheckHealthTemperature->$Temperature) ] != "num" ) do={
+ :log warning ("No threshold given for " . $Temperature . ", assuming 50C.");
+ :set ($CheckHealthTemperature->$Temperature) 50;
+ }
+ :if ($CheckHealthLast->$Temperature <= $CheckHealthTemperature->$Temperature && \
+ $CheckHealthCurrent->$Temperature > $CheckHealthTemperature->$Temperature) do={
+ $SendNotification ("Health warning: " . $Temperature) \
+ ("The " . $Temperature . " on " . $Identity . " is above threshold: " . \
+ $CheckHealthCurrent->$Temperature . "C");
+ }
+ }
+}
+
+:set CheckHealthLast $CheckHealthCurrent;