I have series of the following style:
asdf{instance=x}
asdf{instance=y, foo=bar}
asdf{instance=y, foo=wonk}
And I want to write a query that returns all series where foo is not bar, including those where foo is missing. How can I accomplish this?
If I just do asdf{foo != "bar"} then I do not get the series without the foo label. The only way I have found so far is to do asdf{foo != "bar"} or asdf{foo = ""}, as only the second one finds those without this label.