| 
									
										
										
										
											2020-09-18 11:00:27 +02:00
										 |  |  | #!rsc by RouterOS | 
					
						
							| 
									
										
										
										
											2020-03-04 15:45:37 +01:00
										 |  |  | # RouterOS script: netwatch-notify | 
					
						
							| 
									
										
										
										
											2022-01-01 21:38:15 +01:00
										 |  |  | # Copyright (c) 2020-2022 Christian Hesse <mail@eworm.de> | 
					
						
							| 
									
										
										
										
											2020-06-19 22:17:42 +02:00
										 |  |  | # https://git.eworm.de/cgit/routeros-scripts/about/COPYING.md | 
					
						
							| 
									
										
										
										
											2020-03-04 15:45:37 +01:00
										 |  |  | # | 
					
						
							|  |  |  | # monitor netwatch and send notifications | 
					
						
							| 
									
										
										
										
											2020-03-27 21:48:52 +01:00
										 |  |  | # https://git.eworm.de/cgit/routeros-scripts/about/doc/netwatch-notify.md | 
					
						
							| 
									
										
										
										
											2020-03-04 15:45:37 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-02-22 15:14:10 +01:00
										 |  |  | :local 0 "netwatch-notify"; | 
					
						
							| 
									
										
										
										
											2021-02-18 14:52:47 +01:00
										 |  |  | :global GlobalFunctionsReady; | 
					
						
							|  |  |  | :while ($GlobalFunctionsReady != true) do={ :delay 500ms; } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-03-04 15:45:37 +01:00
										 |  |  | :global NetwatchNotify; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-07-05 16:36:00 +02:00
										 |  |  | :global EitherOr; | 
					
						
							| 
									
										
										
										
											2020-08-24 14:02:40 +02:00
										 |  |  | :global IfThenElse; | 
					
						
							| 
									
										
										
										
											2022-06-17 00:18:59 +02:00
										 |  |  | :global IsDNSResolving; | 
					
						
							| 
									
										
										
										
											2021-02-22 15:14:10 +01:00
										 |  |  | :global LogPrintExit2; | 
					
						
							| 
									
										
										
										
											2020-08-24 14:02:40 +02:00
										 |  |  | :global ParseKeyValueStore; | 
					
						
							| 
									
										
										
										
											2021-08-27 11:20:57 +02:00
										 |  |  | :global ScriptLock; | 
					
						
							| 
									
										
										
										
											2021-04-27 20:52:26 +02:00
										 |  |  | :global SendNotification2; | 
					
						
							| 
									
										
										
										
											2020-07-17 08:07:12 +02:00
										 |  |  | :global SymbolForNotification; | 
					
						
							| 
									
										
										
										
											2021-07-08 13:34:52 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | :local NetwatchNotifyHook do={ | 
					
						
							| 
									
										
										
										
											2022-07-05 13:43:50 +02:00
										 |  |  |   :local Name  [ :tostr $1 ]; | 
					
						
							| 
									
										
										
										
											2022-07-05 13:57:11 +02:00
										 |  |  |   :local Type  [ :tostr $2 ]; | 
					
						
							|  |  |  |   :local State [ :tostr $3 ]; | 
					
						
							|  |  |  |   :local Hook  [ :tostr $4 ]; | 
					
						
							| 
									
										
										
										
											2021-07-08 13:34:52 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  |   :global LogPrintExit2; | 
					
						
							|  |  |  |   :global ValidateSyntax; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   :if ([ $ValidateSyntax $Hook ] = true) do={ | 
					
						
							|  |  |  |     :do { | 
					
						
							|  |  |  |       [ :parse $Hook ]; | 
					
						
							|  |  |  |     } on-error={ | 
					
						
							| 
									
										
										
										
											2022-07-06 11:36:27 +02:00
										 |  |  |       $LogPrintExit2 warning $0 ("The " . $State . "-hook for " . $Type . " '" . $Name . \ | 
					
						
							|  |  |  |           "' failed to run.") false; | 
					
						
							| 
									
										
										
										
											2021-07-08 13:34:52 +02:00
										 |  |  |       :return ("The hook failed to run."); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |   } else={ | 
					
						
							| 
									
										
										
										
											2022-07-06 11:36:27 +02:00
										 |  |  |     $LogPrintExit2 warning $0 ("The " . $State . "-hook for " . $Type . " '" . $Name . \ | 
					
						
							|  |  |  |         "' failed syntax validation.") false; | 
					
						
							| 
									
										
										
										
											2021-07-08 13:34:52 +02:00
										 |  |  |     :return ("The hook failed syntax validation."); | 
					
						
							|  |  |  |   } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-07-06 11:36:27 +02:00
										 |  |  |   $LogPrintExit2 info $0 ("Ran hook on " . $Type . " '" . $Name . "' " . $State . ": " . \ | 
					
						
							|  |  |  |       $Hook) false; | 
					
						
							| 
									
										
										
										
											2021-07-08 13:34:52 +02:00
										 |  |  |   :return ("Ran hook:\n" . $Hook); | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2020-03-04 15:45:37 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-01-02 21:40:40 +01:00
										 |  |  | $ScriptLock $0; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-05-10 15:11:44 +02:00
										 |  |  | :if ([ /system/resource/get uptime ] < 5m) do={ | 
					
						
							| 
									
										
										
										
											2022-01-02 21:44:22 +01:00
										 |  |  |   $LogPrintExit2 info $0 ("System just booted, giving netwatch some time to settle.") true; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-03-04 15:45:37 +01:00
										 |  |  | :if ([ :typeof $NetwatchNotify ] = "nothing") do={ | 
					
						
							| 
									
										
										
										
											2022-07-13 11:35:32 +02:00
										 |  |  |   :set NetwatchNotify ({}); | 
					
						
							| 
									
										
										
										
											2020-03-04 15:45:37 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-07-05 15:30:39 +02:00
										 |  |  | :foreach Host in=[ /tool/netwatch/find where comment~"notify" !disabled ] do={ | 
					
						
							| 
									
										
										
										
											2022-05-10 15:11:44 +02:00
										 |  |  |   :local HostVal [ /tool/netwatch/get $Host ]; | 
					
						
							| 
									
										
										
										
											2022-07-05 13:57:11 +02:00
										 |  |  |   :local Type [ $IfThenElse ($HostVal->"type" ~ "^(http-get|tcp-conn)\$") "service" "host" ]; | 
					
						
							| 
									
										
										
										
											2020-07-03 15:19:46 +02:00
										 |  |  |   :local HostInfo [ $ParseKeyValueStore ($HostVal->"comment") ]; | 
					
						
							| 
									
										
										
										
											2020-03-04 21:01:21 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-01-02 20:47:12 +01:00
										 |  |  |   :if ($HostInfo->"notify" = true && $HostInfo->"disabled" != true) do={ | 
					
						
							| 
									
										
										
										
											2022-07-05 16:36:00 +02:00
										 |  |  |     :local Name [ $EitherOr ($HostInfo->"name") ($HostVal->"name") ]; | 
					
						
							| 
									
										
										
										
											2020-03-04 21:01:21 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-01-02 20:47:12 +01:00
										 |  |  |     :local Metric { "count"=0; "notified"=false }; | 
					
						
							| 
									
										
										
										
											2022-07-05 13:41:35 +02:00
										 |  |  |     :if ([ :typeof ($NetwatchNotify->$Name) ] = "array") do={ | 
					
						
							|  |  |  |       :set $Metric ($NetwatchNotify->$Name); | 
					
						
							| 
									
										
										
										
											2021-05-06 12:55:05 +02:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-02-07 21:46:10 +01:00
										 |  |  |     :if ([ :typeof ($HostInfo->"resolve") ] = "str") do={ | 
					
						
							| 
									
										
										
										
											2022-06-17 00:18:59 +02:00
										 |  |  |       :if ([ $IsDNSResolving ] = true) do={ | 
					
						
							| 
									
										
										
										
											2022-02-07 21:46:10 +01:00
										 |  |  |         :do { | 
					
						
							|  |  |  |           :local Resolve [ :resolve ($HostInfo->"resolve") ]; | 
					
						
							|  |  |  |           :if ($Resolve != $HostVal->"host") do={ | 
					
						
							| 
									
										
										
										
											2022-07-06 11:36:27 +02:00
										 |  |  |              $LogPrintExit2 info $0 ("Name '" . $HostInfo->"resolve" . [ $IfThenElse \ | 
					
						
							|  |  |  |                  ($HostInfo->"resolve" != $HostInfo->"name") ("' for " . $Type . " '" . \ | 
					
						
							|  |  |  |                  $HostInfo->"name") "" ] . "' resolves to different address " . $Resolve . \ | 
					
						
							|  |  |  |                  ", updating.") false; | 
					
						
							| 
									
										
										
										
											2022-05-10 15:11:44 +02:00
										 |  |  |             /tool/netwatch/set host=$Resolve $Host; | 
					
						
							| 
									
										
										
										
											2022-02-07 21:46:10 +01:00
										 |  |  |             :set ($Metric->"resolve-failed") false; | 
					
						
							|  |  |  |           } | 
					
						
							|  |  |  |         } on-error={ | 
					
						
							|  |  |  |           :if ($Metric->"resolve-failed" != true) do={ | 
					
						
							| 
									
										
										
										
											2022-07-06 11:36:27 +02:00
										 |  |  |             $LogPrintExit2 warning $0 ("Resolving name '" . $HostInfo->"resolve" . [ $IfThenElse \ | 
					
						
							|  |  |  |                 ($HostInfo->"resolve" != $HostInfo->"name") ("' for " . $Type . " '" . \ | 
					
						
							|  |  |  |                 $HostInfo->"name") "" ] . "' failed.") false; | 
					
						
							| 
									
										
										
										
											2022-02-07 21:46:10 +01:00
										 |  |  |             :set ($Metric->"resolve-failed") true; | 
					
						
							|  |  |  |           } | 
					
						
							| 
									
										
										
										
											2022-01-02 20:47:12 +01:00
										 |  |  |         } | 
					
						
							| 
									
										
										
										
											2020-07-06 15:44:41 +02:00
										 |  |  |       } | 
					
						
							| 
									
										
										
										
											2020-11-17 15:03:01 +01:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2022-01-02 20:47:12 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |     :if ($HostVal->"status" = "up") do={ | 
					
						
							|  |  |  |       :local Count ($Metric->"count"); | 
					
						
							|  |  |  |       :if ($Count > 0) do={ | 
					
						
							| 
									
										
										
										
											2022-07-06 11:36:27 +02:00
										 |  |  |         $LogPrintExit2 info $0 ("The " . $Type . " '" . $Name . "' (" . $HostVal->"host" . \ | 
					
						
							|  |  |  |             ") is up.") false; | 
					
						
							| 
									
										
										
										
											2022-01-02 20:47:12 +01:00
										 |  |  |         :set ($Metric->"count") 0; | 
					
						
							|  |  |  |       } | 
					
						
							|  |  |  |       :if ($Metric->"notified" = true) do={ | 
					
						
							| 
									
										
										
										
											2022-07-06 11:36:27 +02:00
										 |  |  |         :local Message ("The " . $Type . " '" . $Name . "' (" . $HostVal->"host" . \ | 
					
						
							|  |  |  |             ") is up since " . $HostVal->"since" . ".\n" . \ | 
					
						
							|  |  |  |             "It was down for " . $Count . " checks since " . ($Metric->"since") . "."); | 
					
						
							| 
									
										
										
										
											2022-01-02 20:47:12 +01:00
										 |  |  |         :if ([ :typeof ($HostInfo->"up-hook") ] = "str") do={ | 
					
						
							| 
									
										
										
										
											2022-07-06 11:36:27 +02:00
										 |  |  |           :set Message ($Message . "\n\n" . [ $NetwatchNotifyHook $Name $Type "up" \ | 
					
						
							|  |  |  |               ($HostInfo->"up-hook") ]); | 
					
						
							| 
									
										
										
										
											2022-01-02 20:47:12 +01:00
										 |  |  |         } | 
					
						
							|  |  |  |         $SendNotification2 ({ origin=$0; \ | 
					
						
							| 
									
										
										
										
											2022-07-06 11:36:27 +02:00
										 |  |  |           subject=([ $SymbolForNotification "white-heavy-check-mark" ] . "Netwatch Notify: " . \ | 
					
						
							|  |  |  |               $Name . " up"); \ | 
					
						
							| 
									
										
										
										
											2022-01-02 20:47:12 +01:00
										 |  |  |           message=$Message }); | 
					
						
							|  |  |  |       } | 
					
						
							|  |  |  |       :set ($Metric->"notified") false; | 
					
						
							|  |  |  |       :set ($Metric->"parent") ($HostInfo->"parent"); | 
					
						
							|  |  |  |       :set ($Metric->"since"); | 
					
						
							|  |  |  |     } else={ | 
					
						
							|  |  |  |       :set ($Metric->"count") ($Metric->"count" + 1); | 
					
						
							|  |  |  |       :set ($Metric->"parent") ($HostInfo->"parent"); | 
					
						
							|  |  |  |       :set ($Metric->"since") ($HostVal->"since"); | 
					
						
							|  |  |  |       :local Count [ $IfThenElse ([ :tonum ($HostInfo->"count") ] > 0) ($HostInfo->"count") 5 ]; | 
					
						
							|  |  |  |       :local Parent ($HostInfo->"parent"); | 
					
						
							|  |  |  |       :while ([ :len $Parent ] > 0) do={ | 
					
						
							|  |  |  |         :set Count ($Count + 1); | 
					
						
							| 
									
										
										
										
											2020-11-17 21:37:23 +01:00
										 |  |  |         :set Parent ($NetwatchNotify->$Parent->"parent"); | 
					
						
							|  |  |  |       } | 
					
						
							| 
									
										
										
										
											2022-01-02 20:47:12 +01:00
										 |  |  |       :set Parent ($HostInfo->"parent"); | 
					
						
							|  |  |  |       :local ParentNotified false; | 
					
						
							|  |  |  |       :while ($ParentNotified = false && [ :len $Parent ] > 0) do={ | 
					
						
							| 
									
										
										
										
											2022-07-06 11:36:27 +02:00
										 |  |  |         :set ParentNotified [ $IfThenElse (($NetwatchNotify->$Parent->"notified") = true) \ | 
					
						
							|  |  |  |             true false ]; | 
					
						
							| 
									
										
										
										
											2022-01-02 20:47:12 +01:00
										 |  |  |         :if ($ParentNotified = false) do={ | 
					
						
							|  |  |  |           :set Parent ($NetwatchNotify->$Parent->"parent"); | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |       } | 
					
						
							| 
									
										
										
										
											2022-02-03 13:51:40 +01:00
										 |  |  |       $LogPrintExit2 [ $IfThenElse ($HostInfo->"no-down-notification" != true) info debug ] $0 \ | 
					
						
							| 
									
										
										
										
											2022-07-06 11:36:27 +02:00
										 |  |  |           ("The " . $Type . " '" . $Name . "' (" . $HostVal->"host" . ") is down for " . \ | 
					
						
							|  |  |  |           $Metric->"count" . " checks, " . [ $IfThenElse ($ParentNotified = false) [ $IfThenElse \ | 
					
						
							|  |  |  |           ($Metric->"notified" = true) ("already notified.") ($Count - $Metric->"count" . \ | 
					
						
							|  |  |  |           " to go.") ] ("parent " . $Type . " " . $Parent . " is down.") ]) false; | 
					
						
							|  |  |  |       :if ((($Count * 2) - ($Metric->"count" * 3)) / 2 = 0 && \ | 
					
						
							|  |  |  |            [ :typeof ($HostInfo->"pre-down-hook") ] = "str") do={ | 
					
						
							| 
									
										
										
										
											2022-07-05 13:57:11 +02:00
										 |  |  |         $NetwatchNotifyHook $Name $Type "pre-down" ($HostInfo->"pre-down-hook"); | 
					
						
							| 
									
										
										
										
											2022-01-02 20:47:12 +01:00
										 |  |  |       } | 
					
						
							| 
									
										
										
										
											2022-07-06 11:36:27 +02:00
										 |  |  |       :if ($ParentNotified = false && $Metric->"count" >= $Count && \ | 
					
						
							|  |  |  |            $Metric->"notified" != true) do={ | 
					
						
							|  |  |  |         :local Message ("The " . $Type . " '" . $Name . "' (" . $HostVal->"host" . \ | 
					
						
							|  |  |  |             ") is down since " . $HostVal->"since" . "."); | 
					
						
							| 
									
										
										
										
											2022-01-02 20:47:12 +01:00
										 |  |  |         :if ([ :typeof ($HostInfo->"down-hook") ] = "str") do={ | 
					
						
							| 
									
										
										
										
											2022-07-06 11:36:27 +02:00
										 |  |  |           :set Message ($Message . "\n\n" . [ $NetwatchNotifyHook $Name $Type "down" \ | 
					
						
							|  |  |  |               ($HostInfo->"down-hook") ]); | 
					
						
							| 
									
										
										
										
											2022-01-02 20:47:12 +01:00
										 |  |  |         } | 
					
						
							| 
									
										
										
										
											2022-02-03 13:51:40 +01:00
										 |  |  |         :if ($HostInfo->"no-down-notification" != true) do={ | 
					
						
							|  |  |  |           $SendNotification2 ({ origin=$0; \ | 
					
						
							| 
									
										
										
										
											2022-07-06 11:36:27 +02:00
										 |  |  |             subject=([ $SymbolForNotification "cross-mark" ] . "Netwatch Notify: " . \ | 
					
						
							|  |  |  |                 $Name . " down"); \ | 
					
						
							| 
									
										
										
										
											2022-02-03 13:51:40 +01:00
										 |  |  |             message=$Message }); | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2022-01-02 20:47:12 +01:00
										 |  |  |         :set ($Metric->"notified") true; | 
					
						
							| 
									
										
										
										
											2020-07-03 15:19:46 +02:00
										 |  |  |       } | 
					
						
							| 
									
										
										
										
											2020-03-04 15:45:37 +01:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2022-07-05 13:41:35 +02:00
										 |  |  |     :set ($NetwatchNotify->$Name) { | 
					
						
							| 
									
										
										
										
											2022-01-02 20:47:12 +01:00
										 |  |  |       "count"=($Metric->"count"); | 
					
						
							|  |  |  |       "notified"=($Metric->"notified"); | 
					
						
							|  |  |  |       "parent"=($Metric->"parent"); | 
					
						
							|  |  |  |       "resolve-failed"=($Metric->"resolve-failed"); | 
					
						
							|  |  |  |       "since"=($Metric->"since") }; | 
					
						
							| 
									
										
										
										
											2020-03-04 15:45:37 +01:00
										 |  |  |   } | 
					
						
							|  |  |  | } |