1
0
mirror of https://github.com/eworm-de/routeros-scripts.git synced 2024-05-11 05:55:19 +00:00

early-errors: exclude certificate messages

This is most likely SCEP requests before network is up...
This commit is contained in:
Christian Hesse
2020-07-06 16:04:08 +02:00
parent 8dadde23f3
commit e1b45f13f5

View File

@ -13,7 +13,8 @@
$WaitFullyConnected;
:local Errors [ / log find where (topics~"error" or topics~"critical") !(topics~"e-mail") !(topics~"dns") ];
:local Errors [ / log find where (topics~"error" or topics~"critical") \
!(topics~"certificate") !(topics~"dns") !(topics~"e-mail") ];
:local ErrCount [ :len $Errors ];
:if ($ErrCount > 0) do={
:local Message ("The log on " . $Identity . " contains " . $ErrCount . \