-
-
Notifications
You must be signed in to change notification settings - Fork 18
/
prometheus.yml
64 lines (63 loc) · 1.71 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
---
scrape_configs:
- job_name: redpanda
scrape_interval: 15s
scheme: http
dns_sd_configs:
- names: [ "redpanda" ]
type: A
port: 9644
- job_name: apiserver
scrape_interval: 15s
scheme: http
# static config to be used when running services locally and prometheus in a container
# static_configs:
# - targets: [ "host.docker.internal:8080" ]
dns_sd_configs:
- names: [ "apiserver" ]
type: A
port: 8080
- job_name: notification-publisher
scrape_interval: 15s
scheme: http
metrics_path: /q/metrics
# static config to be used when running services locally and prometheus in a container
# static_configs:
# - targets: [ "host.docker.internal:8090" ]
dns_sd_configs:
- names: [ "notification-publisher" ]
type: A
port: 8090
- job_name: repo-meta-analyzer
scrape_interval: 15s
scheme: http
metrics_path: /q/metrics
# static config to be used when running services locally and prometheus in a container
# static_configs:
# - targets: [ "host.docker.internal:8091" ]
dns_sd_configs:
- names: [ "repo-meta-analyzer" ]
type: A
port: 8091
- job_name: vuln-analyzer
scrape_interval: 15s
scheme: http
metrics_path: /q/metrics
# static config to be used when running services locally and prometheus in a container
# static_configs:
# - targets: [ "host.docker.internal:8092" ]
dns_sd_configs:
- names: [ "vuln-analyzer" ]
type: A
port: 8092
- job_name: mirror-service
scrape_interval: 15s
scheme: http
metrics_path: /q/metrics
dns_sd_configs:
- names: [ "mirror-service" ]
type: A
port: 8092
# static config to be used when running services locally and prometheus in a container
# static_configs:
# - targets: [ "host.docker.internal:8093" ]