Hi,
I use AWS Timestream as a datasource and want to plot two lines. I also want to create a personal label for each line.
- How can I change the names of the labels. For example one could be “Hot water” and the other "Cold water)
- How can I make the green line to be always completely red and the other blue? (No thresholds just a static color for each line)
Currently I use the “Prepare time series” => “Multi-frame time series” Transform to device my query in two lines.
SELECT time, "measure_value::double" as value, sensor_id
FROM "sensordb"."ruesselsheim"
WHERE "measure_value::varchar" IS NULL and
sensor_id in (
'28-02149245a540',
'28-02159245c2cf'
)
ORDER BY time ASC