prometheus.yml 421 B

12345678910111213141516171819
  1. global:
  2. scrape_interval: 15s
  3. external_labels:
  4. monitor: 'string-service-monitor'
  5. scrape_configs:
  6. - job_name: 'prometheus'
  7. scrape_interval: 5s
  8. static_configs:
  9. - targets: ['localhost:9090']
  10. labels:
  11. group: 'local'
  12. - job_name: 'string-service'
  13. scrape_interval: 5s
  14. static_configs:
  15. - targets: ['localhost:9000']
  16. labels:
  17. group: 'string-service'