-
Notifications
You must be signed in to change notification settings - Fork 2
/
prometheus.yml
69 lines (68 loc) · 1.55 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
---
global:
scrape_interval: 15s
scrape_timeout: 10s
evaluation_interval: 1m
scrape_configs:
- job_name: prometheus
static_configs:
- targets:
# Yourself
- 0.0.0.0:9090
- job_name: canton
static_configs:
- targets:
# Docker compose service
- canton:19090
labels:
namespace: static_local
pod: canton
container: canton
- job_name: http-json
static_configs:
- targets:
# Docker compose service
- http-json:19091
labels:
namespace: static_local
pod: json
container: json
- job_name: trigger-service
static_configs:
- targets:
# Docker compose service
- trigger-service:19090
labels:
namespace: static_local
pod: trigger
container: trigger
- job_name: grafana
static_configs:
- targets:
# Docker compose service
- grafana:3000
- job_name: exporter
static_configs:
- targets:
# Docker compose service
- exporter:9100
- job_name: loki
static_configs:
- targets:
# Docker compose service
- loki:5000
- job_name: promtail
static_configs:
- targets:
# Docker compose service
- promtail:5100
- job_name: postgres
static_configs:
- targets:
# Docker compose service
- postgres-exporter:9187
- job_name: pqs_scribe
static_configs:
- targets:
# Docker compose service
- pqs_scribe:9090