forked from Blockdaemon/solana-cluster
-
Notifications
You must be signed in to change notification settings - Fork 1
/
example-config.yml
59 lines (48 loc) · 1.42 KB
/
example-config.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
scrape_interval: 15s
target_groups:
# A group of nodes on the same Solana network.
- group: mainnet
# ------------------------------------------------
# Snapshot retrieval
# ------------------------------------------------
# URL scheme, use "http" or "https".
scheme: http
# ------------------------------------------------
# Discovery
# ------------------------------------------------
# Discover targets from a hardcoded set of nodes.
static_targets:
targets:
- solana-mainnet-1.example.org:8899
- solana-mainnet-2.example.org:8899
- solana-mainnet-3.example.org:8899
# Discover targets from a JSON file.
#
# file_targets:
# path: <filename>
# Discover targets from a HTTP server.
#
# http_targets:
# url: <string>
# basic_auth: <...>
# bearer_auth: <...>
# tls_config: <...>
# ------------------------------------------------
# Authentication
# ------------------------------------------------
# Set up RFC 7617 Basic Authentication on requests.
#
# basic_auth:
# username: <string>
# password: <string>
# Set up a Bearer Auth token.
#
# bearer_auth:
# token: <string>
# Set up TLS config (requires https scheme).
#
# tls_config:
# ca_file: <path>
# cert_file: <path>
# key_file: <path>
# insecure_skip_verify: <boolean>