unbatch
Turn a batched stream into an unbatched stream.
unbatch
This processor has no arguments.
Example: Emit 20 points, batch every five seconds, count the result, then unbatch and count again
emit -from :2015-01-01: -limit 20
| batch :5s:
| reduce count()
| unbatch
| reduce count()
| view text