aboutsummaryrefslogtreecommitdiffstats
path: root/netwatch-notify
diff options
context:
space:
mode:
Diffstat (limited to 'netwatch-notify')
-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") };
}