Question:
What configuration will make it so Prometheus doesn’t scrape targets with a label of team: frontend?
relabel_configs:
- source_labels: [team]
regex: frontend
action: drop
relabel_configs:
- source_labels: [frontend]
regex: team
action: drop
metric_relabel_configs:
- source_labels: [team]
regex: frontend
action: drop
relabel_configs:
- match: [team]
regex: frontend
action: drop