Prometheus服务发现配置的方法主要有两种:
示例:
static_configs:
- targets: ['localhost:9090', 'example.com:8080']
示例:
- job_name: 'myapp'
consul_sd_configs:
- server: 'consul.service.consul:8500'
services: ['myapp']
通过以上两种方法,用户可以方便地配置Prometheus来监控目标主机,实现服务发现和监控。