-
Notifications
You must be signed in to change notification settings - Fork 15
/
Vixen.example.toml
39 lines (30 loc) · 1.19 KB
/
Vixen.example.toml
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
# This is an example TOML configuration file for Yellowstone Vixen.
# Copy to Vixen.toml and them modify as needed.
[yellowstone]
# The endpoint of the dragon's mouth stream.
# This is the URL where the stream can be accessed.
endpoint = "https://index.rpcpool.com"
# The x-token for the dragon's mouth stream.
# Replace <X-TOKEN> with your actual token.
x-token = "<X-TOKEN>"
# The connection timeout for the dragon's mouth stream in seconds.
# This defines how long to wait for a connection before timing out.
timeout = 60
# Metrics configuration section.
# Uncomment the following lines if you are running Prometheus
#[metrics]
# The endpoint of the metrics stream.
# Metrics data is pushed to this endpoint and consumed by Prometheus.
#endpoint = "http://localhost:3030"
# The job name of the metrics stream.
# This is used to identify the metrics stream in Prometheus.
#job = "example"
# The username for the metrics stream.
# This is used for authentication purposes.
#username = "foo"
# The password for the metrics stream.
# This is used for authentication purposes.
#password = "bar"
# The metrics export interval in seconds.
# This defines how often metrics data is exported.
#export-interval = 60