oraclecaicai

Results 2 comments of oraclecaicai

Kapacitor: 1.5.3 InfluxDB: 1.7.8 Hi guys, I have a TICKscript like this: var req_all = stream |from() .measurement('request_log') |window() .period(1m) .every(1m) |count('step') .as('cnt') var req_err = stream |from() .measurement('request_log') .where(lambda:...

> > > The workaround for me was to union two streams first. And then to join the completed stream with the United stream. Pretty ugly but it do the...