Привет. Хочу получать и хранить только те метрики prometheus, которые мне нужны. В prometheus.yml добавляю:
scrape_configs:
- job_name: node
scrape_interval: 15s
static_configs:
- targets:
- '192.168.1.12:9100'
metrics_path: '/metrics'
relabel_configs:
- source_labels: [__name__]
action: keep
regex: name_metrics
И в проме получаю: No targets No active targets in this scrape pool. При этом с конфигом без relabel_configs получаю все метрики. Почему не отрабатывает конструкция с regex?