aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar Christian Hesse <mail@eworm.de>2020-03-05 12:42:21 +0100
committerGravatar Christian Hesse <mail@eworm.de>2020-03-05 12:42:21 +0100
commit9aed03693c918aaff5462e9ed2300c05a787d2c4 (patch)
tree6b0d6b111351d8daa43432c66c40e3640f2a1de2
parent3d07ebde0534f3a11d3f149875d1cb0d2f1483e3 (diff)
netwatch-notify: fix handling of array
Looks like handling of more-dimensional arrays is a bit tricky in RouterOS... Without this *all* values with the same key name are updated, independent of intermediate name.
-rw-r--r--netwatch-notify18
1 files changed, 10 insertions, 8 deletions
diff --git a/netwatch-notify b/netwatch-notify
index 04e3d30..dfa62e8 100644
--- a/netwatch-notify
+++ b/netwatch-notify
@@ -17,23 +17,25 @@
:local HostVal [ / tool netwatch get $Host ];
:local HostName ([ $ParseKeyValueStore ($HostVal->"comment") ]->"hostname");
- :if ([ :typeof ($NetwatchNotify->$HostName) ] = "nothing") do={
- :set ($NetwatchNotify->$HostName) { "count"=0; "notified"=false };
+ :local Metric { "count"=0; "notified"=false };
+ :if ([ :typeof ($NetwatchNotify->$HostName) ] = "array") do={
+ :set $Metric ($NetwatchNotify->$HostName);
}
:if ($HostVal->"status" = "up") do={
- :set ($NetwatchNotify->$HostName->"count") 0;
- :if ($NetwatchNotify->$HostName->"notified" = true) do={
+ :set ($Metric->"count") 0;
+ :if ($Metric->"notified" = true) do={
$SendNotification ("Netwatch Notify: " . $HostName . " up") \
("Host " . $HostName . " (" . $HostVal->"host" . ") is up since " . $HostVal->"since" . ".");
}
- :set ($NetwatchNotify->$HostName->"notified") false;
+ :set ($Metric->"notified") false;
} else={
- :set ($NetwatchNotify->$HostName->"count") ($NetwatchNotify->$HostName->"count" + 1);
- :if ($NetwatchNotify->$HostName->"count" >= 5 && $NetwatchNotify->$HostName->"notified" != true) do={
+ :set ($Metric->"count") ($Metric->"count" + 1);
+ :if ($Metric->"count" >= 5 && $Metric->"notified" != true) do={
$SendNotification ("Netwatch Notify: " . $HostName . " down") \
("Host " . $HostName . " (" . $HostVal->"host" . ") is down since " . $HostVal->"since" . ".");
- :set ($NetwatchNotify->$HostName->"notified") true;
+ :set ($Metric->"notified") true;
}
}
+ :set ($NetwatchNotify->$HostName) { "count"=($Metric->"count"); "notified"=($Metric->"notified") };
}