Prometheus服務發現配置的方法主要有兩種:
示例:
static_configs:
- targets: ['localhost:9090', 'example.com:8080']
示例:
- job_name: 'myapp'
consul_sd_configs:
- server: 'consul.service.consul:8500'
services: ['myapp']
通過以上兩種方法,用戶可以方便地配置Prometheus來監控目標主機,實現服務發現和監控。