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
Namespace kubernetes labels and annotations tags scraped by prometheus plugin so that it is easier to exclude it using tagexclude.
tagexclude
Prefix annotation and label tags so that it is easier to process the tags by it's prefix
[[inputs.prometheus]] metric_version = 2 monitor_kubernetes_pods = true pod_scrape_scope = "node" + pod_label_template = 'pod.label/{{ . }}' + pod_annotation_template = 'pod.annotation/{{ . }}' + tagexclude = ["pod.annotation/*"]
<label>=<value> <annotation>=<value>
pod.label/<label>=<value> pod.annotation/<annotation>=<value>
[[inputs.prometheus]] metric_version = 2 monitor_kubernetes_pods = true pod_scrape_scope = "node" tagexclude = ["pod.annotation/*"]
The text was updated successfully, but these errors were encountered:
next steps: update the PR and continue the review process
Sorry, something went wrong.
I believe this is now resolved with #12851
Successfully merging a pull request may close this issue.
Feature Request
Namespace kubernetes labels and annotations tags scraped by prometheus plugin so that it is easier to exclude it using
tagexclude
.Proposal:
Prefix annotation and label tags so that it is easier to process the tags by it's prefix
Current behavior:
Desired behavior:
Use case
The text was updated successfully, but these errors were encountered: