-
Notifications
You must be signed in to change notification settings - Fork 1.1k
New issue
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
Option to disable exporter metrics #1046
Comments
I'm thinking we should start to integrate this into the exporter-toolkit. |
Enable, or disable? The metrics are present by default in blackbox_exporter:
If you don't want the metrics, a workaround for now is to drop them in the scrape job, e.g. metric_relabel_configs:
- source_labels: [__name__]
regex: go_\S+
action: drop |
Sorry, I meant disable of course. Thank for that! Didn't know about the exclude regex, very helpful! 👍 |
I'd like to have an option to enable metrics such as
go_memstats_alloc_bytes
, etc. Analogously to prometheus/node_exporter#1148.The text was updated successfully, but these errors were encountered: