-
Notifications
You must be signed in to change notification settings - Fork 11
/
prometheus.yml
50 lines (47 loc) · 1.21 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
global:
scrape_interval: 15s
evaluation_interval: 15s
external_labels:
monitor: 'codelab-monitor'
rule_files:
# - './alert.rules'
scrape_configs:
- job_name: 'prometheus'
static_configs:
- targets:
- 'localhost:9090'
- job_name: 'spring'
metrics_path: '/prometheus'
static_configs:
- targets:
- 'docker.for.mac.host.internal:8080'
- job_name: 'admin'
metrics_path: '/prometheus'
static_configs:
- targets:
- 'docker.for.mac.host.internal:8110'
- job_name: 'contents'
metrics_path: '/prometheus'
static_configs:
- targets:
- 'docker.for.mac.host.internal:8200'
- job_name: 'discovery'
metrics_path: '/prometheus'
static_configs:
- targets:
- 'docker.for.mac.host.internal:8100'
- job_name: 'frontend'
metrics_path: '/prometheus'
static_configs:
- targets:
- 'docker.for.mac.host.internal:8201'
- job_name: 'gw'
metrics_path: '/prometheus'
static_configs:
- targets:
- 'docker.for.mac.host.internal:8000'
- job_name: 'zipkin-server'
metrics_path: '/prometheus'
static_configs:
- targets:
- 'docker.for.mac.host.internal:9411'