-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathprometheus.yml
More file actions
59 lines (45 loc) · 1.47 KB
/
prometheus.yml
File metadata and controls
59 lines (45 loc) · 1.47 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
global:
scrape_interval: 15s
evaluation_interval: 15s
scrape_configs:
- job_name: 'redis-exporter-shared'
static_configs:
- targets: ['redis-exporter-shared:9121']
- job_name: 'redis-exporter-queue'
static_configs:
- targets: ['redis-exporter-queue:9121']
- job_name: 'prometheus'
static_configs:
- targets: ['localhost:9090']
- job_name: 'eureka-server'
metrics_path: '/actuator/prometheus'
static_configs:
- targets: ['host.docker.internal:19000']
- job_name: 'gateway'
metrics_path: '/actuator/prometheus'
static_configs:
- targets: ['host.docker.internal:19005']
- job_name: 'auth-service'
metrics_path: '/actuator/prometheus'
static_configs:
- targets: ['host.docker.internal:19010']
- job_name: 'restaurant-service'
metrics_path: '/actuator/prometheus'
static_configs:
- targets: ['host.docker.internal:19020']
- job_name: 'queue-service'
metrics_path: '/actuator/prometheus'
static_configs:
- targets: ['host.docker.internal:19030']
- job_name: 'reservation-service'
metrics_path: '/actuator/prometheus'
static_configs:
- targets: ['host.docker.internal:19040']
- job_name: 'notification-service'
metrics_path: '/actuator/prometheus'
static_configs:
- targets: ['host.docker.internal:19050']
- job_name: 'payment-service'
metrics_path: '/actuator/prometheus'
static_configs:
- targets: ['host.docker.internal:19060']