-
Notifications
You must be signed in to change notification settings - Fork 9
/
prometheus.yml
58 lines (57 loc) · 1.29 KB
/
prometheus.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
global:
scrape_interval: 15s
scrape_configs:
- job_name: prometheus
static_configs:
- targets: ["localhost:9090"]
- job_name: elasticsearch
scrape_interval: 30s
scrape_timeout: 10s
static_configs:
- targets: ["elasticsearch-exporter:9114"]
- job_name: rabbitmq
scrape_timeout: 5s
metrics_path: /metrics
static_configs:
- targets: ["rabbitmq:15692"]
- job_name: haproxy
scrape_timeout: 5s
metrics_path: /metrics
static_configs:
- targets: ['apilb:8000']
- job_name: apiserver
dns_sd_configs:
- names:
- apiserver
type: "A"
port: 8000
refresh_interval: 60s
- job_name: coordinator
static_configs:
- targets: ["coordinator:8000"]
- job_name: cache-cleaner
dns_sd_configs:
- names:
- cache-cleaner
type: "A"
port: 8000
refresh_interval: 60s
- job_name: profiler
dns_sd_configs:
- names:
- profiler
type: "A"
port: 8000
refresh_interval: 60s
- job_name: lazo
dns_sd_configs:
- names:
- lazo
type: "A"
port: 8000
refresh_interval: 60s
- job_name: nominatim
scrape_timeout: 5s
metrics_path: /metrics
static_configs:
- targets: ["nominatim"]