-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathprometheus.yml
More file actions
32 lines (31 loc) · 984 Bytes
/
prometheus.yml
File metadata and controls
32 lines (31 loc) · 984 Bytes
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
global:
scrape_interval: 15s
scrape_configs:
- job_name: 'flash-sale'
static_configs:
- targets: [ 'host.docker.internal:19300' ]
metrics_path: '/actuator/prometheus'
- job_name: 'gateway'
static_configs:
- targets: [ 'host.docker.internal:19091' ]
metrics_path: '/actuator/prometheus'
- job_name: 'order'
static_configs:
- targets: [ 'host.docker.internal:19400' ]
metrics_path: '/actuator/prometheus'
- job_name: 'alarm'
static_configs:
- targets: [ 'host.docker.internal:19600' ]
metrics_path: '/actuator/prometheus'
- job_name: 'auth'
static_configs:
- targets: [ 'host.docker.internal:19100' ]
metrics_path: '/actuator/prometheus'
- job_name: 'user'
static_configs:
- targets: [ 'host.docker.internal:19200' ]
metrics_path: '/actuator/prometheus'
- job_name: 'vendor'
static_configs:
- targets: [ 'host.docker.internal:19500' ]
metrics_path: '/actuator/prometheus'