1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
| global: scrape_interval: 60s evaluation_interval: 60s
scrape_configs: - job_name: prometheus static_configs: - targets: ['localhost:9090'] labels: instance: prometheus
- job_name: linux static_configs: - targets: ['10.4.7.155:9100'] labels: instance: localhost
- job_name: prometheus-boot scrape_interval: 5s metrics_path: '/actuator/prometheus' static_configs: - targets: ['10.4.7.155:8080']
|