Hello everybody,
with the exporters i get a large number of metrics.
However, I don't need all of them.
I don't want to save these and remove them from the DB.
This is described in the documentation with metric_relabel_configs.
Example to remove all go:. * metrics:
metric_relabel_configs:
- source_labels: [__name__]
regex: (go_.*)
action: drop
My question:
Can I test the regex beforehand?
Is there a way to display all metrics by specifying this regex?
Best regards
Thomas.