I'm hoping to have an aggregate sum for each day. All my searches are suggesting to use
|> aggregateWindow(every: 1d, fn: sum, createEmpty: false)
However, this appears to be more of a group by 24h blocks starting from now rather than grouping by Date. This appears evident by crossing over midnight and the new date having significant values even though it only has reports of 0 so far. ie: it's reporting the last 24h and stealing from the prior day rather then just using what is under the new Date.