this label (exported_instance) is always added in every metric automatically.
myMetric{exported_instance="HP-probook", instance="ss:9966", job="ss"}
How can I replace during scrape time from prometheus.yml? Is it possibile? Or I need to add new one?
relabel_configs:
- source_labels: [__address__]
regex: 'HP-probook'
target_label: new_label
replacement: 'HP-probook-2'
I understand that it is added automatically and for this reason it is not clear to me if I can replace it without adding another one.
Thanks Alen