Gauge for each column of data

Version 10.4.1

I have a database collecting temperatures from multiple probes. I want to have a gauge for each probe and set thresholds specific to each probe.

With my current query, I get a gauge for each probe, but they share thresholds.

Query
// v.bucket, v.timeRangeStart, and v.timeRange stop are all variables supported by the flux plugin and influxdb
from(bucket: v.bucket)
** |> range(start: v.timeRangeStart, stop: v.timeRangeStop)**
** |> filter(fn: (r) => r[“_value”] >= 10 and r[“_value”] <= 350)**
** |> aggregateWindow(every: 5m, fn: mean, createEmpty: false)**

I am a beginner, so feel free to talk to me as if I were a child…

Any help is greatly appreciated.

Ok, so you can all disregard this question, I just needed to walk away for a bit… The answer was to create separate visualizations for each probe.

Thank you.

1 Like