-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathprometheus.yml
43 lines (35 loc) · 1.17 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
global:
scrape_interval: 10s # 데이터 수집 간격
scrape_configs:
- job_name: "eureka-server"
metrics_path: "/actuator/prometheus"
static_configs:
- targets: [ "host.docker.internal:19090" ]
- job_name: "gateway-server"
metrics_path: "/actuator/prometheus"
static_configs:
- targets: [ "host.docker.internal:19091" ]
- job_name: "payment-server"
metrics_path: "/actuator/prometheus"
static_configs:
- targets: [ "host.docker.internal:8080" ]
- job_name: "order-server"
metrics_path: "/actuator/prometheus"
static_configs:
- targets: [ "host.docker.internal:8085" ]
- job_name: "brand-server"
metrics_path: "/actuator/prometheus"
static_configs:
- targets: [ "host.docker.internal:8484" ]
- job_name: "coupon-server"
metrics_path: "/actuator/prometheus"
static_configs:
- targets: [ "host.docker.internal:8081" ]
- job_name: "timesale-server"
metrics_path: "/actuator/prometheus"
static_configs:
- targets: [ "host.docker.internal:8082" ]
- job_name: "user-server"
metrics_path: "/actuator/prometheus"
static_configs:
- targets: [ "host.docker.internal:8083" ]