This seems like an extremely simple task, but I am flummoxed. I am using the HTTP agent to monitor an endpoint that returns JSON. I have the pre-processing working such that the value I want is being monitored. 1 = good 0 = broken. This shows up perfectly well in Latest Data when I test and graphs all work. Now I want to make a trigger that says if the value of this item = 0 for more than 15 minutes, do a thing. I have been trying to get this to work with last() with no luck. Last() is always triggering after 1 minute. I have tried
which still triggers at one minute.
seems wrong based on the docs saying
Any help is greatly appreciated.
Code:
{SomeHost:SomeCheck.last(15)}=0
Code:
{SomeHost:SomeCheck.last(#15)}=0
"Last(#3) - third most recent value (not three latest values)"
Comment