Prometheus config provides an ability to filter specific metrics post scraping via metrics_relabel_config
stanza. This document shows a sample config to do the same.
We will use the node_exporter Prometheus exporter as an example and send only metrics matching the regex node_cpu.*
global:
scrape_interval: 1m
scrape_configs:
- job_name: 'node-exporter-01'
static_configs:
- targets: [ 'localhost:9100' ]
This scrapes and stores all node exporter metrics.
global:
scrape_interval: 1m
scrape_configs:
- job_name: 'node-exporter-01'
static_configs:
- targets: [ 'localhost:9100' ]
metric_relabel_configs:
- source_labels: [__name__]
action: keep
regex: '(node_cpu)'
This will scrape all metrics but drop anything that does not match the entries in the regex
section.
https://grafana.com/blog/2022/03/21/how-relabeling-in-prometheus-works/