I have datapoints with various _time values. One of them has a _time value of 2023-04-15 11:07:12 GMT+2
With a range of
range(
start: 2023-04-15T10:00:00.000+02:00,
stop: 2023-04-16T13:00:00.000+02:00
)
I can find it (notice that the stop timestamp is one day later). I can locate the datapoint, and in its _start value it says 2023-04-15 10:00:00 GMT+2, and in its _stop value 2023-04-16 01:00:00 GMT+2
A range of
range(
start: 2023-04-15T10:00:00.000+02:00,
stop: 2023-04-15T13:00:00.000+02:00
)
doesn’t. The _stop value of all datapoints is 2023-04-15 01:00:00 GMT+2. It finds datapoints with _time values from 2023-04-15 10:07:14 GMT+2 to 2023-04-15 12:57:14 GMT+2, but the datapoint I am looking for is not there.
Absolutely no clue what’s going on there. The query looks very basic to me. I just filter by _measurement and tags, nothing else. There is no aggregation of some sorts going on in my query that might omit the datapoint.
- Why is _stop showing something completely different from my range query?
- What could cause the datapoint to go missing
