Re: [influxdb] kapacitor script - Window behavior explaination

2016-09-24 Thread Sean Beckett
On startup, I believe it will emit data the first data after 3s. On Sat, Sep 24, 2016 at 12:31 AM, wrote: > On Thursday, September 22, 2016 at 10:35:39 PM UTC+5:30, Sean Beckett > wrote: > > https://docs.influxdata.com/kapacitor/v1.0/nodes/window_node/ > > > > > > Every 3 seconds, the most recen

Re: [influxdb] kapacitor script - Window behavior explaination

2016-09-23 Thread prashanthc
On Thursday, September 22, 2016 at 10:35:39 PM UTC+5:30, Sean Beckett wrote: > https://docs.influxdata.com/kapacitor/v1.0/nodes/window_node/ > > > Every 3 seconds, the most recent 10 seconds of data is emitted to the next > node. > > > On Thu, Sep 22, 2016 at 9:27 AM, wrote: > In the below c

Re: [influxdb] kapacitor script - Window behavior explaination

2016-09-22 Thread Sean Beckett
https://docs.influxdata.com/kapacitor/v1.0/nodes/window_node/ Every 3 seconds, the most recent 10 seconds of data is emitted to the next node. On Thu, Sep 22, 2016 at 9:27 AM, wrote: > In the below code, what is the behavior of window? > > Does it collect data for 10s and emit it into pipeline

[influxdb] kapacitor script - Window behavior explaination

2016-09-22 Thread prashanthc
In the below code, what is the behavior of window? Does it collect data for 10s and emit it into pipeline every 3 seconds? And the data emitted to pipeline, is it 3 seconds of data or whole 10 seconds data? stream |from() .measurement('cricket')