I performed my first downsampling of higher resolution data, 1-3sec ->1min, and I am trying to compare the output downsampled data to the original dataset to ensure there are no gaps.
The problem I am running into is I am new to InfluxDB and apparently I don’t know how to properly display a representative profile of the high-resolution data because despite trying a number of methods the query either crashes or truncates.
Is there a better way to go about this?
This the query I am using: (v1.8)
from(bucket: “homeassistant/autogen”)
|> range(start: 0)
|> filter(fn: (r) => r.entity_id == “circuit_1_power”)
|> filter(fn: (r) => r._value >= 0)
|> aggregateWindow(every: 1m, fn: mean)
|> yield(name: “original”