Iām trying to ID when my thermometers are going offline using this pattern:
Pattern "missing temps" (temp : &float ā any):
@temp is nil 5..;
It works, except that if there are more than 5 values missing I get a separate match for every missing value over 5.
So if I have:
50 50 nil nil nil nil nil nil nil 50 51
I get 3 matches:
nil nil nil nil nil
nil nil nil nil nil nil
nil nil nil nil nil nil nil
If a thermometer goes offline for a long time, the notifications will get totally out of control. Why is it doing this? How can I stop the redundant matches?