My challenge is fairly straightforward. I’m building a table for visualization in Grafana. This table consists of a number of current values for a set of Stations (host).
What I do so far is query last() per relevant variable and join() the resulting tables on “host”, creating something like this:
Value 1 Value 2 Value 3
Station 1 X 1 4
Station 2 X 1 2
Station 3 Y 1 3
This is easy enough and works well. With one exception. There is one variable for a sensor that is not present at all stations. Consequently, when I try to join that particular result table to the table that I’m building, the row for that entire station is removed.
Instead, I would like to simply show a 0 value for that non-existent value.
What I want:
Value 1 Value 2 Value 3 value 4
Station 1 X 1 4 2
Station 2 X 1 2 2
Station 3 Y 1 3 0 <--
What I get:
Value 1 Value 2 Value 3 value 4
Station 1 X 1 4 2
Station 2 X 1 2 2
I’ve been trying to think of a decent workaround, but so far I’m coming up empty.
Anyone have a clever suggestion?