I am running a piece of software at home which enables my electric vehicle to charge only with surplus solar power.
Yesterday I tried adding a so called defined vehicle to be able to log more statistics/sessions.
Today however I saw that it messed up one of my Grafana dashboards:
Previously it only showed the left 3 phases, but now it also shows (outdated/last) values of a stale record:
Query is as follows:
from(bucket: "EVCC")
|> range(start: 0)
|> filter(fn: (r) => r["_field"] == "l3" or r["_field"] == "l2" or r["_field"] == "l1")
|> filter(fn: (r) => r["loadpoint"] == "Alfen")
|> filter(fn: (r) => r["_measurement"] == "chargeCurrents")
|> last()
However if I filter on vehicle = “” then I don’t get any data back. How can I get rid of those 3 bars on the right (Ford).