forked from bro-n-bro/cybernode
-
Notifications
You must be signed in to change notification settings - Fork 0
/
prometheus.yml
67 lines (65 loc) · 1.93 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
global:
scrape_interval: 15s
evaluation_interval: 5s
rule_files:
# - "first.rules"
# - "second.rules"
scrape_configs:
- job_name: "prometheus"
scrape_interval: 5s
static_configs:
- targets: ["prometheus:9090"]
# - targets: ['localhost:36080']
- job_name: "node_exporter"
scrape_interval: 5s
static_configs:
- targets: ["node-exporter:9100"]
- job_name: "grafana"
scrape_interval: 5s
static_configs:
- targets: ["grafana:3000"]
- job_name: "bostrom"
scrape_interval: 5s
static_configs:
- targets: ["bostrom:26660"]
- job_name: "cadvisor"
scrape_interval: 5s
static_configs:
- targets: ["cadvisor:8080"]
- job_name: "ipfs"
# metrics_path: '/debug/metrics/prometheus'
scrape_interval: 5s
static_configs:
- targets: ["ipfs:8080"]
- job_name: "cyberindex_postgres"
scrape_interval: 5s
static_configs:
- targets: ["cyberindex_postgres:5432"]
- job_name: "cyberindex_hasura"
scrape_interval: 5s
static_configs:
- targets: ["cyberindex_hasura:8089"]
- job_name: "nginx-exporter"
scrape_interval: 5s
static_configs:
- targets: ["nginx-exporter:9113"]
- job_name: "blackbox-exporter"
metrics_path: /probe
scrape_interval: 5s
params:
module: [http_prometheus]
static_configs:
- targets: # Target to probe with https.
- https://:9115
- https://rpc.bostrom./block?height=8733522
- https://lcd.bostrom./node_info
- https://ipfs./ipfs/QmYwAPJzv5CZsnA625s3Xf2nemtYgPpHdWEz79ojWnPbdG/readme
- https://index./console/
- https://grafana./login/
relabel_configs:
- source_labels: [__address__]
target_label: __param_target
- source_labels: [__param_target]
target_label: instance
- target_label: __address__
replacement: blackbox-exporter:9115 # The blackbox exporter's real hostname:port.