Hey Team,
I’m using
DB: InfluxDB 2.7
Language: InfluxQL
I expect the first datapoint returned by the below query to have a timestamp of 2023-08-30T15:09:00Z but for some reason it returns the first datapoint with the timestamp as 2023-08-30T15:08:00Z, any idea why?
SELECT MOVING_AVERAGE(MEAN(quantity),10) AS "quantity" FROM "quantity_management".."group-products" WHERE ("product_id" = 'YAZOO') AND time >= '2023-08-30T15:00:00Z' AND "time" <= '2023-08-31T16:00:00Z' GROUP BY "product_name","product_id", time(1m)
cc: @scott , @Jay_Clifford , @Anaisdg for advice please