12345678910111213141516171819202122232425262728293031 |
- global:
- scrape_interval: 15s
- scrape_configs:
- - job_name: 'prometheus'
- static_configs:
- - targets: ['prometheus:9090']
- - job_name: 'grafana'
- static_configs:
- - targets: ['grafana:3000']
- - job_name: 'node-exporter'
- static_configs:
- - targets: ['monitor-node:9100']
- - job_name: 'docker-ghip'
- static_configs:
- - targets: ['192.168.8.2:9080']
- - job_name: 'nacos'
- scrape_interval: 60s
- metrics_path: '/nacos/actuator/prometheus'
- static_configs:
- - targets:
- - 192.168.8.2:8848
- - job_name: 'gateway'
- metrics_path: '/actuator/prometheus'
- scrape_interval: 15s
- static_configs:
- - targets: ['192.168.8.2:9001','192.168.8.2:9002']
|