Dump converted data to a new measurement?

Hi @kyled , yep thats the one. you should specify .every and .period in your queries otherwise Kapacitor won’t know how much data to query and for how long :slight_smile:

.cron, as the name suggests would run the task at a given time of day or week.

Glad you got it sorted!

Edit: as a point, if you want to keep the tags in your measurement you MUST specify them in the groupBy clause. It will only include the ones you specify. If you want to keep all tag values and insert them back in with your converted data then you can simply change it to group by *

So this

.groupBy(time(5m), *)

Would group into 5 minute chunks and retain all tags as they are.