How does it work? Does it query every minute and fetch all 3600 seconds values to validate?
Which is better for smooth performance? The goal is to trigger if the value is 30 and hasn't changed not even once for last 1 hour.
{Template: item_key.last(,3600)}= 30}
OR
{Template: item_key.min(60m)} =30)
Also another question:
In the documentation they mention
last (sec|#num,<time_shift>)
The most recent value.
sec (ignored) or #num - the Nth most recent value
time_shift (optional) - see avg()
What do they mean "Ignored"? Is last (,60) seconds ignored?
Which is better for smooth performance? The goal is to trigger if the value is 30 and hasn't changed not even once for last 1 hour.
{Template: item_key.last(,3600)}= 30}
OR
{Template: item_key.min(60m)} =30)
Also another question:
In the documentation they mention
last (sec|#num,<time_shift>)
The most recent value.
sec (ignored) or #num - the Nth most recent value
time_shift (optional) - see avg()
What do they mean "Ignored"? Is last (,60) seconds ignored?
Comment