Is is possible in PromQL to query a label with a list of values? For example this is a how you'd do it in SQL:
SELECT *
FROM my_table
WHERE column_1 IN ('A', 'B', 'C')
Is there a similar syntax in PromQL? I would have imagined something like this:
`my_metric{Lable_1=["A", "B", "C"]}`