Trending
Trending with the Factry Histo...
Trending with raw queries
why use a raw query? allows advanced filtering, transformations, and calculations not yet available in the visual query editor useful for very specific data needs, or when replicating queries from another system example influxql select mean("value") from "temperature sensor" where time >= now() 24h group by time(1h) fill(previous) this query fetches hourly average temperature values from the last 24 hours, filling gaps with the previous value query reference for detailed syntax, refer to the official query language docs influxql v1 reference flux (influxdb v2) reference