i am trying to set a trigger that would fire if a metric changes and if its end value goes above a threshold for more than 60 seconds.
so for example firing when a value goes from 0 to 1 and stays 1 for at least 60 seconds (this is because i want to avoid intermittency).
The value comes in at a variable frequency but definitely more often than once per minutes, so the problem now is that changes() will only be true before 60 seconds have elapsed ....
how to deal with this situation ?
Comment