I am using Cloud 2.0. I am unable to query numerical values. It tells me no results.
from(bucket: “XXX”)
|> range(start: v.timeRangeStart, stop: v.timeRangeStop)
|> filter(fn: (r) => r._measurement == "cpu" and
r.cpu == "cpu0" and
r._value >= 50
)
My data has plenty of greater than 50 values in it.