-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathprometheus.yml
More file actions
44 lines (35 loc) · 1.12 KB
/
prometheus.yml
File metadata and controls
44 lines (35 loc) · 1.12 KB
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
global:
scrape_interval: 5s
scrape_configs:
- job_name: 'api-gateway'
metrics_path: '/actuator/prometheus'
static_configs:
- targets: ['api-gateway:8081']
- job_name: 'auth-service'
metrics_path: '/actuator/prometheus'
static_configs:
- targets: ['auth-service:8090']
- job_name: 'user-service'
metrics_path: '/actuator/prometheus'
static_configs:
- targets: ['user-service:8091']
- job_name: 'content-service'
metrics_path: '/actuator/prometheus'
static_configs:
- targets: ['content-service:8092']
- job_name: 'ingestion-service'
metrics_path: '/actuator/prometheus'
static_configs:
- targets: ['content-ingestion-service:8093']
- job_name: 'video-processing-service'
metrics_path: '/actuator/prometheus'
static_configs:
- targets: ['video-processing-service:8094']
- job_name: 'streaming-service'
metrics_path: '/actuator/prometheus'
static_configs:
- targets: ['streaming-service:8095']
- job_name: 'analytic-service'
metrics_path: '/actuator/prometheus'
static_configs:
- targets: ['analytic-service:8097']