2020-03-04 14:45:37 +00:00
|
|
|
#!rsc
|
|
|
|
# RouterOS script: netwatch-notify
|
|
|
|
# Copyright (c) 2020 Christian Hesse <mail@eworm.de>
|
|
|
|
#
|
|
|
|
# monitor netwatch and send notifications
|
|
|
|
|
|
|
|
:global NetwatchNotify;
|
|
|
|
|
|
|
|
:global ParseKeyValueStore;
|
|
|
|
:global SendNotification;
|
|
|
|
|
|
|
|
:if ([ :typeof $NetwatchNotify ] = "nothing") do={
|
|
|
|
:set NetwatchNotify [ :toarray "" ];
|
|
|
|
}
|
|
|
|
|
|
|
|
:foreach Host in=[ / tool netwatch find where comment~"^notify," ] do={
|
|
|
|
:local HostVal [ / tool netwatch get $Host ];
|
|
|
|
:local HostName ([ $ParseKeyValueStore ($HostVal->"comment") ]->"hostname");
|
2020-03-04 20:01:21 +00:00
|
|
|
|
|
|
|
:if ([ :typeof ($NetwatchNotify->$HostName) ] = "nothing") do={
|
2020-03-05 07:15:36 +00:00
|
|
|
:set ($NetwatchNotify->$HostName) { "count"=0; "notified"=false };
|
2020-03-04 20:01:21 +00:00
|
|
|
}
|
|
|
|
|
2020-03-04 14:45:37 +00:00
|
|
|
:if ($HostVal->"status" = "up") do={
|
2020-03-04 20:01:21 +00:00
|
|
|
:set ($NetwatchNotify->$HostName->"count") 0;
|
|
|
|
:if ($NetwatchNotify->$HostName->"notified" = true) do={
|
2020-03-04 14:45:37 +00:00
|
|
|
$SendNotification ("Netwatch Notify: " . $HostName . " up") \
|
|
|
|
("Host " . $HostName . " (" . $HostVal->"host" . ") is up since " . $HostVal->"since" . ".");
|
|
|
|
}
|
2020-03-04 20:01:21 +00:00
|
|
|
:set ($NetwatchNotify->$HostName->"notified") false;
|
2020-03-04 14:45:37 +00:00
|
|
|
} else={
|
2020-03-04 20:01:21 +00:00
|
|
|
:set ($NetwatchNotify->$HostName->"count") ($NetwatchNotify->$HostName->"count" + 1);
|
|
|
|
:if ($NetwatchNotify->$HostName->"count" >= 5 && $NetwatchNotify->$HostName->"notified" != true) do={
|
2020-03-04 14:45:37 +00:00
|
|
|
$SendNotification ("Netwatch Notify: " . $HostName . " down") \
|
|
|
|
("Host " . $HostName . " (" . $HostVal->"host" . ") is down since " . $HostVal->"since" . ".");
|
2020-03-04 20:01:21 +00:00
|
|
|
:set ($NetwatchNotify->$HostName->"notified") true;
|
2020-03-04 14:45:37 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|