When I create a variable that allows multiple selections and attempt to include it in a PromQL query such as foo{label~="$values"} it becomes:
foo{label~="{bar,baz}"}
This is not valid PromQL and the query returns empty.
The correct way would be to use foo{label~="bar|baz"} but I have no idea how to instruct the plugin to construct this type of multivalue representation.
When I create a variable that allows multiple selections and attempt to include it in a PromQL query such as
foo{label~="$values"}
it becomes:foo{label~="{bar,baz}"}
This is not valid PromQL and the query returns empty.
The correct way would be to use
foo{label~="bar|baz"}
but I have no idea how to instruct the plugin to construct this type of multivalue representation.