mirror of
https://git.eworm.de/cgit/routeros-scripts
synced 2025-07-16 13:04:30 +02:00
netwatch-notify: nest conditions
The logic here was right, but RouterOS runs the checks simultaneously.
This caused delays even if no resolving was needed.
Nesting the checks fixes this.
(cherry picked from commit 0b46c508dc
)
This commit is contained in:
parent
c03da561cd
commit
0c607a8f9c
1 changed files with 17 additions and 15 deletions
|
@ -66,7 +66,8 @@ $ScriptLock $0;
|
|||
:set $Metric ($NetwatchNotify->$HostName);
|
||||
}
|
||||
|
||||
:if ([ :typeof ($HostInfo->"resolve") ] = "str" && [ $DNSIsResolving ] = true) do={
|
||||
:if ([ :typeof ($HostInfo->"resolve") ] = "str") do={
|
||||
:if ([ $DNSIsResolving ] = true) do={
|
||||
:do {
|
||||
:local Resolve [ :resolve ($HostInfo->"resolve") ];
|
||||
:if ($Resolve != $HostVal->"host") do={
|
||||
|
@ -84,6 +85,7 @@ $ScriptLock $0;
|
|||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
:if ($HostVal->"status" = "up") do={
|
||||
:local Count ($Metric->"count");
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue