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;
|
|
|
|
|
2021-05-06 13:10:33 +00:00
|
|
|
:global DNSIsResolving;
|
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-08-27 09:20:57 +00:00
|
|
|
:global ScriptLock;
|
2021-04-27 18:52:26 +00:00
|
|
|
:global SendNotification2;
|
2020-07-17 06:07:12 +00:00
|
|
|
:global SymbolForNotification;
|
2021-07-08 11:34:52 +00:00
|
|
|
|
|
|
|
:local NetwatchNotifyHook do={
|
|
|
|
:local Name [ :tostr $1 ];
|
|
|
|
:local Type [ :tostr $2 ];
|
|
|
|
:local Hook [ :tostr $3 ];
|
|
|
|
|
|
|
|
:global LogPrintExit2;
|
|
|
|
:global ValidateSyntax;
|
|
|
|
|
|
|
|
:if ([ $ValidateSyntax $Hook ] = true) do={
|
|
|
|
:do {
|
|
|
|
[ :parse $Hook ];
|
|
|
|
} on-error={
|
|
|
|
$LogPrintExit2 warning $0 ("The " . $Type . "-hook for host " . $Name . " failed to run.") false;
|
|
|
|
:return ("The hook failed to run.");
|
|
|
|
}
|
|
|
|
} else={
|
|
|
|
$LogPrintExit2 warning $0 ("The " . $Type . "-hook for host " . $Name . " failed syntax validation.") false;
|
|
|
|
:return ("The hook failed syntax validation.");
|
|
|
|
}
|
|
|
|
|
|
|
|
$LogPrintExit2 info $0 ("Ran hook on host " . $Name . " " . $Type . ": " . $Hook) false;
|
|
|
|
:return ("Ran hook:\n" . $Hook);
|
|
|
|
}
|
2020-03-04 14:45:37 +00:00
|
|
|
|
|
|
|
:if ([ :typeof $NetwatchNotify ] = "nothing") do={
|
|
|
|
:set NetwatchNotify [ :toarray "" ];
|
|
|
|
}
|
|
|
|
|
2021-08-27 09:20:57 +00:00
|
|
|
$ScriptLock $0;
|
|
|
|
|
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
|
|
|
}
|
|
|
|
|
2021-05-06 13:10:33 +00:00
|
|
|
:if ([ :typeof ($HostInfo->"resolve") ] = "str" && [ $DNSIsResolving ] = true) do={
|
2021-05-06 10:55:05 +00:00
|
|
|
:do {
|
|
|
|
:local Resolve [ :resolve ($HostInfo->"resolve") ];
|
|
|
|
:if ($Resolve != $HostVal->"host") do={
|
|
|
|
$LogPrintExit2 info $0 ("Name '" . $HostInfo->"resolve" . [ $IfThenElse ($HostInfo->"resolve" != \
|
|
|
|
$HostInfo->"hostname") ("' for host '" . $HostInfo->"hostname") "" ] . \
|
|
|
|
"' resolves to different address " . $Resolve . ", updating.") false;
|
|
|
|
/ tool netwatch set host=$Resolve $Host;
|
2021-05-06 13:17:05 +00:00
|
|
|
:set ($Metric->"resolve-failed") false;
|
2021-05-06 10:55:05 +00:00
|
|
|
}
|
|
|
|
} on-error={
|
2021-05-06 13:17:05 +00:00
|
|
|
:if ($Metric->"resolve-failed" != true) do={
|
|
|
|
$LogPrintExit2 warning $0 ("Resolving name '" . $HostInfo->"resolve" . [ $IfThenElse ($HostInfo->"resolve" != \
|
|
|
|
$HostInfo->"hostname") ("' for host '" . $HostInfo->"hostname") "" ] . "' failed.") false;
|
|
|
|
:set ($Metric->"resolve-failed") true;
|
|
|
|
}
|
2021-05-06 10:55:05 +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-05-18 14:44:07 +00:00
|
|
|
:local 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-07-08 11:34:52 +00:00
|
|
|
:set Message ($Message . "\n\n" . [ $NetwatchNotifyHook $HostName "up" ($HostInfo->"up-hook") ]);
|
2020-07-06 13:44:41 +00:00
|
|
|
}
|
2021-05-18 14:44:07 +00:00
|
|
|
$SendNotification2 ({ origin=$0; \
|
|
|
|
subject=([ $SymbolForNotification "white-heavy-check-mark" ] . "Netwatch Notify: " . $HostName . " up"); \
|
|
|
|
message=$Message });
|
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;
|
2021-07-09 09:27:26 +00:00
|
|
|
:if ((($Count * 2) - ($Metric->"count" * 3)) / 2 = 0 && [ :typeof ($HostInfo->"pre-down-hook") ] = "str") do={
|
|
|
|
$NetwatchNotifyHook $HostName "pre-down" ($HostInfo->"pre-down-hook");
|
|
|
|
}
|
2020-11-17 14:03:01 +00:00
|
|
|
:if ($ParentNotified = false && $Metric->"count" >= $Count && $Metric->"notified" != true) do={
|
2021-05-18 14:44:07 +00:00
|
|
|
:local Message ("Host " . $HostName . " (" . $HostVal->"host" . ") is down since " . $HostVal->"since" . ".");
|
2020-07-03 13:19:46 +00:00
|
|
|
:if ([ :typeof ($HostInfo->"down-hook") ] = "str") do={
|
2021-07-08 11:34:52 +00:00
|
|
|
:set Message ($Message . "\n\n" . [ $NetwatchNotifyHook $HostName "down" ($HostInfo->"down-hook") ]);
|
2020-07-03 13:19:46 +00:00
|
|
|
}
|
2021-05-18 14:44:07 +00:00
|
|
|
$SendNotification2 ({ origin=$0; \
|
|
|
|
subject=([ $SymbolForNotification "cross-mark" ] . "Netwatch Notify: " . $HostName . " down"); \
|
|
|
|
message=$Message });
|
|
|
|
:set ($Metric->"notified") true;
|
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");
|
2021-05-06 13:17:05 +00:00
|
|
|
"resolve-failed"=($Metric->"resolve-failed");
|
2020-08-24 12:18:32 +00:00
|
|
|
"since"=($Metric->"since") };
|
2020-03-04 14:45:37 +00:00
|
|
|
}
|