Hi,
My data is stored in InfluxDB v1.8. With that in mind, I want to draw a XY chart / scatterplot of 2 time series from different measurements. As I came to understand, InfluxDB v1 does not support joins, so I’m stuck with 2 Grafana queries and am trying to find a way combining them.
Query A
SELECT mean(“Ext.indoor_ambient_sensor(R6T)”) FROM “espaltherma” WHERE “topic”::tag = ‘espaltherma/ATTR’ AND time >= 1735689600000ms and time <= 1738367999999ms GROUP BY time(1d) fill(null) ORDER BY time ASC
Query B
SELECT difference(max(“total_energy_consumption_kwh”)) FROM “mtr” WHERE “topic”::tag = ‘mtr/hvt/heat’ AND time >= 1735689600000ms and time <= 1738367999999ms GROUP BY time(1d) fill(null) ORDER BY time ASC
Any hints or thoughts are welcome.
Thank you.