0
我正在使用基於prometheus文件的服務發現。然而,當拉我的服務器列表時,我意識到我的服務的指標端點是/prometheus
否/metrics
如何在prometheus重新標籤步驟中添加標籤?
我已經看到,我可以使用重新標記來解決這個問題。
- job_name: 'servers-dev'
file_sd_configs:
- files: ['/prometheus/topology.json']
relabel_configs:
- source_labels: [?????]
action: replace
target_label: __metrics_path__ #I want this to be /prometheus
regex: (.+)
如何使用重新標籤添加標籤?
:facepalm:感謝'metrics_path'的提醒我一直在跳過Kubernetes SD,所以我的眼睛已經越過了。還要感謝重新貼上標籤的例子,因爲我實際上需要添加一個額外的標籤並且完美地工作。 – checketts