2020-09-18 09:00:27 +00:00
|
|
|
#!rsc by RouterOS
|
2020-03-04 14:45:37 +00:00
|
|
|
# RouterOS script: netwatch-notify
|
2021-01-01 20:33:52 +00:00
|
|
|
# Copyright (c) 2020-2021 Christian Hesse <mail@eworm.de>
|
2020-06-19 20:17:42 +00:00
|
|
|
# https://git.eworm.de/cgit/routeros-scripts/about/COPYING.md
|
2020-03-04 14:45:37 +00:00
|
|
|
#
|
|
|
|
# monitor netwatch and send notifications
|
2020-03-27 20:48:52 +00:00
|
|
|
# https://git.eworm.de/cgit/routeros-scripts/about/doc/netwatch-notify.md
|
2020-03-04 14:45:37 +00:00
|
|
|
|
2021-02-22 14:14:10 +00:00
|
|
|
:local 0 "netwatch-notify";
|
2021-02-18 13:52:47 +00:00
|
|
|
:global GlobalFunctionsReady;
|
|
|
|
:while ($GlobalFunctionsReady != true) do={ :delay 500ms; }
|
|
|
|
|
2020-03-04 14:45:37 +00:00
|
|
|
:global NetwatchNotify;
|
|
|
|
|
2020-08-24 12:02:40 +00:00
|
|
|
:global IfThenElse;
|
2021-02-22 14:14:10 +00:00
|
|
|
:global LogPrintExit2;
|
2020-08-24 12:02:40 +00:00
|
|
|
:global ParseKeyValueStore;
|
2021-04-27 18:52:26 +00:00
|
|
|
:global SendNotification2;
|
2020-07-17 06:07:12 +00:00
|
|
|
:global SymbolForNotification;
|
2021-02-26 15:05:34 +00:00
|
|
|
:global ValidateSyntax;
|
2020-03-04 14:45:37 +00:00
|
|
|
|
|
|
|
:if ([ :typeof $NetwatchNotify ] = "nothing") do={
|
|
|
|
:set NetwatchNotify [ :toarray "" ];
|
|
|
|
}
|
|
|
|
|
2020-07-17 22:01:51 +00:00
|
|
|
:foreach Host in=[ / tool netwatch find where comment~"^notify," disabled=no ] do={
|
2020-03-04 14:45:37 +00:00
|
|
|
:local HostVal [ / tool netwatch get $Host ];
|
2020-07-03 13:19:46 +00:00
|
|
|
:local HostInfo [ $ParseKeyValueStore ($HostVal->"comment") ];
|
|
|
|
:local HostName ($HostInfo->"hostname");
|
2020-03-04 20:01:21 +00:00
|
|
|
|
2020-03-05 11:42:21 +00:00
|
|
|
:local Metric { "count"=0; "notified"=false };
|
|
|
|
:if ([ :typeof ($NetwatchNotify->$HostName) ] = "array") do={
|
|
|
|
:set $Metric ($NetwatchNotify->$HostName);
|
2020-03-04 20:01:21 +00:00
|
|
|
}
|
|
|
|
|
2020-03-04 14:45:37 +00:00
|
|
|
:if ($HostVal->"status" = "up") do={
|
2020-03-24 11:12:00 +00:00
|
|
|
:local Count ($Metric->"count");
|
2021-05-06 12:50:45 +00:00
|
|
|
:if ($Count > 0) do={
|
|
|
|
$LogPrintExit2 info $0 ("Host " . $HostName . " (" . $HostVal->"host" . ") is up.") false;
|
|
|
|
:set ($Metric->"count") 0;
|
|
|
|
}
|
2020-03-05 11:42:21 +00:00
|
|
|
:if ($Metric->"notified" = true) do={
|
2021-04-27 19:54:30 +00:00
|
|
|
$SendNotification2 ({ origin=$0; \
|
|
|
|
subject=([ $SymbolForNotification "white-heavy-check-mark" ] . "Netwatch Notify: " . $HostName . " up"); \
|
2021-04-27 18:52:26 +00:00
|
|
|
message=("Host " . $HostName . " (" . $HostVal->"host" . ") is up since " . $HostVal->"since" . ".\n" . \
|
|
|
|
"It was down for " . $Count . " checks since " . ($Metric->"since") . ".") });
|
2020-07-06 13:44:41 +00:00
|
|
|
:if ([ :typeof ($HostInfo->"up-hook") ] = "str") do={
|
2021-02-26 15:05:34 +00:00
|
|
|
:if ([ $ValidateSyntax ($HostInfo->"up-hook") ] = true) do={
|
|
|
|
$LogPrintExit2 info $0 ("Running hook on host " . $HostName . " up: " . ($HostInfo->"up-hook")) false;
|
|
|
|
[ :parse ($HostInfo->"up-hook") ];
|
|
|
|
} else={
|
|
|
|
$LogPrintExit2 warning $0 ("The up-hook for host " . $HostName . " failed syntax validation.") false;
|
|
|
|
}
|
2020-07-06 13:44:41 +00:00
|
|
|
}
|
2020-03-04 14:45:37 +00:00
|
|
|
}
|
2020-03-05 11:42:21 +00:00
|
|
|
:set ($Metric->"notified") false;
|
2020-11-17 20:37:23 +00:00
|
|
|
:set ($Metric->"parent") ($HostInfo->"parent");
|
2020-08-24 12:18:32 +00:00
|
|
|
:set ($Metric->"since");
|
2020-03-04 14:45:37 +00:00
|
|
|
} else={
|
2020-03-05 11:42:21 +00:00
|
|
|
:set ($Metric->"count") ($Metric->"count" + 1);
|
2020-11-17 20:37:23 +00:00
|
|
|
:set ($Metric->"parent") ($HostInfo->"parent");
|
2020-08-24 12:18:32 +00:00
|
|
|
:set ($Metric->"since") ($HostVal->"since");
|
2020-11-17 14:03:01 +00:00
|
|
|
:local Count [ $IfThenElse ([ :tonum ($HostInfo->"count") ] > 0) ($HostInfo->"count") 5 ];
|
2020-11-17 20:37:23 +00:00
|
|
|
:local Parent ($HostInfo->"parent");
|
2020-11-17 21:02:41 +00:00
|
|
|
:while ([ :len $Parent ] > 0) do={
|
2020-11-17 14:03:01 +00:00
|
|
|
:set Count ($Count + 1);
|
2020-11-17 21:02:41 +00:00
|
|
|
:set Parent ($NetwatchNotify->$Parent->"parent");
|
2020-11-17 14:03:01 +00:00
|
|
|
}
|
2020-11-17 21:02:41 +00:00
|
|
|
:set Parent ($HostInfo->"parent");
|
2020-11-17 20:37:23 +00:00
|
|
|
:local ParentNotified false;
|
|
|
|
:while ($ParentNotified = false && [ :len $Parent ] > 0) do={
|
|
|
|
:set ParentNotified [ $IfThenElse (($NetwatchNotify->$Parent->"notified") = true) true false ];
|
|
|
|
:if ($ParentNotified = false) do={
|
|
|
|
:set Parent ($NetwatchNotify->$Parent->"parent");
|
|
|
|
}
|
|
|
|
}
|
2021-02-22 14:14:10 +00:00
|
|
|
$LogPrintExit2 info $0 ("Host " . $HostName . " (" . $HostVal->"host" . ") is down for " . \
|
2020-11-17 14:14:27 +00:00
|
|
|
$Metric->"count" . " checks, " . [ $IfThenElse ($ParentNotified = false) [ $IfThenElse \
|
|
|
|
($Metric->"notified" = true) ("already notified.") ($Count - $Metric->"count" . " to go.") ] \
|
2020-11-17 20:37:23 +00:00
|
|
|
("parent host " . $Parent . " is down.") ]) false;
|
2020-11-17 14:03:01 +00:00
|
|
|
:if ($ParentNotified = false && $Metric->"count" >= $Count && $Metric->"notified" != true) do={
|
2021-04-27 19:54:30 +00:00
|
|
|
$SendNotification2 ({ origin=$0; \
|
|
|
|
subject=([ $SymbolForNotification "cross-mark" ] . "Netwatch Notify: " . $HostName . " down"); \
|
2021-04-27 18:52:26 +00:00
|
|
|
message=("Host " . $HostName . " (" . $HostVal->"host" . ") is down since " . $HostVal->"since" . ".") });
|
2020-03-05 11:42:21 +00:00
|
|
|
:set ($Metric->"notified") true;
|
2020-07-03 13:19:46 +00:00
|
|
|
:if ([ :typeof ($HostInfo->"down-hook") ] = "str") do={
|
2021-02-26 15:05:34 +00:00
|
|
|
:if ([ $ValidateSyntax ($HostInfo->"down-hook") ] = true) do={
|
|
|
|
$LogPrintExit2 info $0 ("Running hook on host " . $HostName . " down: " . ($HostInfo->"down-hook")) false;
|
|
|
|
[ :parse ($HostInfo->"down-hook") ];
|
|
|
|
} else={
|
|
|
|
$LogPrintExit2 warning $0 ("The down-hook for host " . $HostName . " failed syntax validation.") false;
|
|
|
|
}
|
2020-07-03 13:19:46 +00:00
|
|
|
}
|
2020-03-04 14:45:37 +00:00
|
|
|
}
|
|
|
|
}
|
2020-08-24 12:18:32 +00:00
|
|
|
:set ($NetwatchNotify->$HostName) {
|
|
|
|
"count"=($Metric->"count");
|
|
|
|
"notified"=($Metric->"notified");
|
2020-11-17 20:37:23 +00:00
|
|
|
"parent"=($Metric->"parent");
|
2020-08-24 12:18:32 +00:00
|
|
|
"since"=($Metric->"since") };
|
2020-03-04 14:45:37 +00:00
|
|
|
}
|