We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
currently prom-label-proxy can check a query parameter q to exist with value v and injects this as a label in all queries such that
q
v
metric?q=v -> metric{q="v"}
metric?q=v
metric{q="v"}
but our requirement is to exclude some labels e.g. something like
metric?q=!v (or encoded metric?q=%21v)-> metric{q!="v"} multiple repeated query params should work as expected.
metric?q=!v
metric?q=%21v
metric{q!="v"}
The text was updated successfully, but these errors were encountered:
No branches or pull requests
currently prom-label-proxy can check a query parameter
q
to exist with valuev
and injects this as a label in all queries such thatmetric?q=v
->metric{q="v"}
but our requirement is to exclude some labels e.g. something like
metric?q=!v
(or encodedmetric?q=%21v
)->metric{q!="v"}
multiple repeated query params should work as expected.
The text was updated successfully, but these errors were encountered: