onasty/infra/prometheus/prometheus.yml (view raw)
| 1 | global: |
| 2 | scrape_interval: 5s |
| 3 | scrape_timeout: 2s |
| 4 | evaluation_interval: 15s |
| 5 | |
| 6 | scrape_configs: |
| 7 | - job_name: core |
| 8 | metrics_path: /metrics |
| 9 | scheme: http |
| 10 | follow_redirects: true |
| 11 | honor_timestamps: true |
| 12 | static_configs: |
| 13 | - targets: [core:8001] |
| 14 | labels: |
| 15 | service: "core" |
| 16 | |
| 17 | - job_name: mailer |
| 18 | metrics_path: /metrics |
| 19 | scheme: http |
| 20 | follow_redirects: true |
| 21 | honor_labels: true |
| 22 | static_configs: |
| 23 | - targets: [mailer:8001] |
| 24 | labels: |
| 25 | service: "mailer" |