1
0

prometheus.yml 343 B

12345678910111213141516171819
  1. global:
  2. scrape_interval: 15s
  3. rule_files:
  4. - rules.yml
  5. alerting:
  6. alertmanagers:
  7. - static_configs:
  8. - targets:
  9. - alert-manager:9093
  10. scrape_configs:
  11. - job_name: 'prometheus'
  12. static_configs:
  13. - targets: ['prometheus:9090']
  14. - job_name: 'node-exporter'
  15. static_configs:
  16. - targets: ['node-exporter:9100']