From 478688d5345cd29d6b5b31db91ca6e49b41eaac6 Mon Sep 17 00:00:00 2001 From: Christian Hesse Date: Wed, 4 Mar 2020 21:01:21 +0100 Subject: netwatch-notify: use another level of array --- netwatch-notify | 17 +++++++++++------ 1 file changed, 11 insertions(+), 6 deletions(-) diff --git a/netwatch-notify b/netwatch-notify index 8daf014..df13f4f 100644 --- a/netwatch-notify +++ b/netwatch-notify @@ -16,19 +16,24 @@ :foreach Host in=[ / tool netwatch find where comment~"^notify," ] do={ :local HostVal [ / tool netwatch get $Host ]; :local HostName ([ $ParseKeyValueStore ($HostVal->"comment") ]->"hostname"); + + :if ([ :typeof ($NetwatchNotify->$HostName) ] = "nothing") do={ + :set ($NetwatchNotify->$HostName) [ :toarray "" ]; + } + :if ($HostVal->"status" = "up") do={ - :set ($NetwatchNotify->($HostName . "-count")) 0; - :if (($NetwatchNotify->($HostName . "-notified")) = true) do={ + :set ($NetwatchNotify->$HostName->"count") 0; + :if ($NetwatchNotify->$HostName->"notified" = true) do={ $SendNotification ("Netwatch Notify: " . $HostName . " up") \ ("Host " . $HostName . " (" . $HostVal->"host" . ") is up since " . $HostVal->"since" . "."); } - :set ($NetwatchNotify->($HostName . "-notified")) false; + :set ($NetwatchNotify->$HostName->"notified") false; } else={ - :set ($NetwatchNotify->($HostName . "-count")) (($NetwatchNotify->($HostName . "-count")) + 1); - :if (($NetwatchNotify->($HostName . "-count")) >= 5 && ($NetwatchNotify->($HostName . "-notified")) != true) do={ + :set ($NetwatchNotify->$HostName->"count") ($NetwatchNotify->$HostName->"count" + 1); + :if ($NetwatchNotify->$HostName->"count" >= 5 && $NetwatchNotify->$HostName->"notified" != true) do={ $SendNotification ("Netwatch Notify: " . $HostName . " down") \ ("Host " . $HostName . " (" . $HostVal->"host" . ") is down since " . $HostVal->"since" . "."); - :set ($NetwatchNotify->($HostName . "-notified")) true; + :set ($NetwatchNotify->$HostName->"notified") true; } } } -- cgit v1.2.3-54-g00ecf