aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar Christian Hesse <mail@eworm.de>2020-03-04 21:01:21 +0100
committerGravatar Christian Hesse <mail@eworm.de>2020-03-04 21:01:21 +0100
commit478688d5345cd29d6b5b31db91ca6e49b41eaac6 (patch)
tree72698820beca77cd38e93611d7925a29dc171fdf
parente588607efdad7246d2d75f91cfb4655262b1542b (diff)
netwatch-notify: use another level of array
-rw-r--r--netwatch-notify17
1 files 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;
}
}
}