prometheus.yml 549 B

1234567891011121314151617181920212223
  1. global:
  2. scrape_interval: 15s
  3. scrape_timeout: 10s
  4. evaluation_interval: 15s
  5. scrape_configs:
  6. - job_name: prometheus
  7. honor_timestamps: true
  8. scrape_interval: 15s
  9. scrape_timeout: 10s
  10. metrics_path: /metrics
  11. scheme: http
  12. static_configs:
  13. - targets:
  14. - localhost:9090
  15. - job_name: gpustack-worker-discovery
  16. scrape_interval: 5s
  17. http_sd_configs:
  18. - url: 'http://gpustack-server:10161/metrics/targets'
  19. refresh_interval: 1m
  20. - job_name: gpustack-server
  21. scrape_interval: 10s
  22. static_configs:
  23. - targets: ['gpustack-server:10161']