2020-09-18 09:00:27 +00:00
|
|
|
#!rsc by RouterOS
|
2020-07-15 10:22:55 +00:00
|
|
|
# RouterOS script: log-forward
|
2021-01-01 20:33:52 +00:00
|
|
|
# Copyright (c) 2020-2021 Christian Hesse <mail@eworm.de>
|
2020-07-15 10:22:55 +00:00
|
|
|
# https://git.eworm.de/cgit/routeros-scripts/about/COPYING.md
|
|
|
|
#
|
|
|
|
# forward log messages via notification
|
|
|
|
# https://git.eworm.de/cgit/routeros-scripts/about/doc/log-forward.md
|
|
|
|
|
2021-02-22 14:14:10 +00:00
|
|
|
:local 0 "log-forward";
|
2021-02-18 13:52:47 +00:00
|
|
|
:global GlobalFunctionsReady;
|
|
|
|
:while ($GlobalFunctionsReady != true) do={ :delay 500ms; }
|
|
|
|
|
2020-07-15 10:22:55 +00:00
|
|
|
:global Identity;
|
|
|
|
:global LogForwardFilter;
|
2020-09-25 20:21:59 +00:00
|
|
|
:global LogForwardFilterMessage;
|
2021-06-09 12:32:52 +00:00
|
|
|
:global LogForwardInclude;
|
|
|
|
:global LogForwardIncludeMessage;
|
2020-07-15 10:22:55 +00:00
|
|
|
:global LogForwardLast;
|
2020-09-28 18:20:19 +00:00
|
|
|
:global LogForwardRateLimit;
|
2021-03-04 17:47:55 +00:00
|
|
|
:global NotificationsWithSymbols;
|
2020-07-15 10:22:55 +00:00
|
|
|
|
2021-03-17 07:55:33 +00:00
|
|
|
:global EscapeForRegEx;
|
2021-06-15 12:39:42 +00:00
|
|
|
:global HexToNum;
|
2020-10-18 18:13:58 +00:00
|
|
|
:global IfThenElse;
|
2021-02-22 14:14:10 +00:00
|
|
|
:global LogPrintExit2;
|
2021-03-14 23:48:38 +00:00
|
|
|
:global QuotedPrintable;
|
2020-07-17 18:52:52 +00:00
|
|
|
:global ScriptLock;
|
2021-04-27 18:45:51 +00:00
|
|
|
:global SendNotification2;
|
2020-07-17 06:07:12 +00:00
|
|
|
:global SymbolForNotification;
|
2020-07-15 10:22:55 +00:00
|
|
|
:global WaitFullyConnected;
|
|
|
|
|
2021-02-22 18:52:20 +00:00
|
|
|
$ScriptLock $0;
|
2020-07-17 18:52:52 +00:00
|
|
|
|
2020-09-28 18:20:19 +00:00
|
|
|
:if ([ :typeof $LogForwardRateLimit ] = "nothing") do={
|
|
|
|
:set LogForwardRateLimit 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
:if ($LogForwardRateLimit > 30) do={
|
|
|
|
:set LogForwardRateLimit ($LogForwardRateLimit - 1);
|
2021-02-22 14:14:10 +00:00
|
|
|
$LogPrintExit2 info $0 ("Rate limit in action, not forwarding logs, if any!") true;
|
2020-09-28 18:20:19 +00:00
|
|
|
}
|
|
|
|
|
2020-07-15 10:22:55 +00:00
|
|
|
$WaitFullyConnected;
|
|
|
|
|
|
|
|
:local Count 0;
|
2021-03-04 17:42:57 +00:00
|
|
|
:local Duplicates false;
|
2021-12-17 10:48:25 +00:00
|
|
|
:local Last [ $IfThenElse ([ :len $LogForwardLast ] > 0) [ $HexToNum $LogForwardLast ] -1 ];
|
2020-07-15 10:22:55 +00:00
|
|
|
:local Messages "";
|
|
|
|
:local MessageVal;
|
2021-03-04 17:42:57 +00:00
|
|
|
:local MessageDups [ :toarray "" ];
|
2020-07-15 10:22:55 +00:00
|
|
|
|
2021-03-17 07:55:33 +00:00
|
|
|
:local LogForwardFilterLogForwarding ("^" . [ $EscapeForRegEx ("Error sending e-mail <" . \
|
|
|
|
[ $QuotedPrintable ("[" . $Identity . "] " . [ $SymbolForNotification "warning-sign" ] . \
|
|
|
|
"Log Forwarding") ] . ">:") ]);
|
2021-06-09 12:32:52 +00:00
|
|
|
:foreach Message in=[ / log find where (!(message="") and !(message~$LogForwardFilterLogForwarding) and \
|
|
|
|
!(topics~$LogForwardFilter) and !(message~$LogForwardFilterMessage)) or \
|
|
|
|
topics~$LogForwardInclude or message~$LogForwardIncludeMessage ] do={
|
2020-07-15 10:22:55 +00:00
|
|
|
:set MessageVal [ / log get $Message ];
|
|
|
|
|
2021-06-15 12:39:42 +00:00
|
|
|
:if ($Last < [ $HexToNum ($MessageVal->".id") ]) do={
|
2021-03-04 17:42:57 +00:00
|
|
|
:local DupCount ($MessageDups->($MessageVal->"message"));
|
|
|
|
:if ($DupCount < 3) do={
|
2021-03-04 17:47:55 +00:00
|
|
|
:set Messages ($Messages . "\n" . [ $IfThenElse ($NotificationsWithSymbols = true) (" \E2\97\8F ") ] . \
|
|
|
|
$MessageVal->"time" . " " . [ :tostr ($MessageVal->"topics") ] . " " . $MessageVal->"message");
|
2021-03-04 17:42:57 +00:00
|
|
|
} else={
|
|
|
|
:set Duplicates true;
|
|
|
|
}
|
|
|
|
:set ($MessageDups->($MessageVal->"message")) ($DupCount + 1);
|
2020-07-15 10:22:55 +00:00
|
|
|
:set Count ($Count + 1);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
:if ($Count > 0) do={
|
2021-04-27 19:50:44 +00:00
|
|
|
$SendNotification2 ({ origin=$0; \
|
|
|
|
subject=([ $SymbolForNotification "warning-sign" ] . "Log Forwarding"); \
|
2021-04-27 18:45:51 +00:00
|
|
|
message=("The log on " . $Identity . " contains " . [ $IfThenElse ($Count = 1) \
|
|
|
|
"this message" ("these " . $Count . " messages") ] . " after " . \
|
|
|
|
[ / system resource get uptime ] . " uptime." . [ $IfThenElse ($Duplicates = true) \
|
|
|
|
(" Multi-repeated messages have been skipped.") ] . "\n" . $Messages) });
|
2020-07-15 10:22:55 +00:00
|
|
|
|
2020-09-28 18:20:19 +00:00
|
|
|
:set LogForwardRateLimit ($LogForwardRateLimit + 10);
|
2020-07-15 12:43:26 +00:00
|
|
|
:set LogForwardLast ($MessageVal->".id");
|
2020-09-28 18:20:19 +00:00
|
|
|
} else={
|
|
|
|
:if ($LogForwardRateLimit > 0) do={
|
|
|
|
:set LogForwardRateLimit ($LogForwardRateLimit - 1);
|
|
|
|
}
|
2020-07-15 10:22:55 +00:00
|
|
|
}
|