我希望能够区分正在读取的多个服务器。但是,关于服务器的唯一信息就是IP地址,但是我想要的是每个服务器的名称,而不是IP。
This is what I can see at the moment
这是我的 prometheus.yml 文件:
global:
scrape_interval: 15s
scrape_configs:
- job_name: 'eos-dev'
scrape_interval: 5s
metrics_path: '/actuator/prometheus'
static_configs:
- targets: ['292.268.3.326:8303']
labels:
job: 'dev'
- job_name: 'eos-test'
scrape_interval: 5s
metrics_path: '/actuator/prometheus'
static_configs:
- targets: ['272.41.27.342:8303']
labels:
job: 'test'
我尝试了Brian巴西展示的this解决方案,但没有运气。
我看到了这两个one,two问题,它们是关于同一问题的,但是没有运气。
从我看到的解决方案来看,围绕 relabel_configs ,但是我不确定。