You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@titilambert Sadly no. But I am doing 1.2 planning right now and this is similar to some other work I plan to get done so I'll add it to the 1.2 milestone for now.
As it currently works in kapacitor 1.0.0
|window().period(300s).every(60s)
This will emit as soon as 60 seconds passes. In other words, period is not honored.
While every(60) it seems logical to send every 60 seconds, this creates many fake alerts immediately after task is loaded (period didn't fill up yet).
So, there should be option fill() which should not emit anything until first period passes. For example:
|window().period(300s).every(60s).fill()
The text was updated successfully, but these errors were encountered: