-
Notifications
You must be signed in to change notification settings - Fork 2.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add comments to the configuration file
- Loading branch information
1 parent
ccb86ae
commit ebf4aee
Showing
9 changed files
with
51 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,30 @@ | ||
rpc: | ||
# The IP address where this RPC service registers itself; if left blank, it defaults to the internal network IP | ||
registerIP: '' | ||
# List of ports that the RPC service listens on; configuring multiple ports will launch multiple instances. These must match the number of configured prometheus ports | ||
ports: [ 10140 ] | ||
|
||
prometheus: | ||
# Enable or disable Prometheus monitoring | ||
enable: true | ||
# List of ports that Prometheus listens on; these must match the number of rpc.ports to ensure correct monitoring setup | ||
ports: [ 20112 ] | ||
|
||
# IP address that the RPC/WebSocket service listens on; setting to 0.0.0.0 listens on both internal and external IPs. If left blank, it automatically uses the internal network IP | ||
listenIP: 0.0.0.0 | ||
|
||
longConnSvr: | ||
# WebSocket listening ports, must match the number of rpc.ports | ||
ports: [ 10001 ] | ||
# Maximum number of WebSocket connections | ||
websocketMaxConnNum: 100000 | ||
# Maximum length of the entire WebSocket message packet | ||
websocketMaxMsgLen: 4096 | ||
# WebSocket connection handshake timeout in seconds | ||
websocketTimeout: 10 | ||
|
||
# 1: For Android, iOS, Windows, Mac, and web platforms, only one instance can be online at a time | ||
multiLoginPolicy: 1 | ||
|
||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,6 @@ | ||
prometheus: | ||
# Enable or disable Prometheus monitoring | ||
enable: true | ||
# List of ports that Prometheus listens on; each port corresponds to an instance of monitoring. Ensure these are managed accordingly | ||
# Because four instances have been launched, four ports need to be specified | ||
ports: [ 20108, 20109, 20110, 20111 ] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,13 @@ | ||
rpc: | ||
# The IP address where this RPC service registers itself; if left blank, it defaults to the internal network IP | ||
registerIP: '' | ||
# IP address that the RPC service listens on; setting to 0.0.0.0 listens on both internal and external IPs. If left blank, it automatically uses the internal network IP | ||
listenIP: 0.0.0.0 | ||
# List of ports that the RPC service listens on; configuring multiple ports will launch multiple instances. These must match the number of configured prometheus ports | ||
ports: [ 10180 ] | ||
|
||
prometheus: | ||
# Enable or disable Prometheus monitoring | ||
enable: true | ||
# List of ports that Prometheus listens on; these must match the number of rpc.ports to ensure correct monitoring setup | ||
ports: [ 20105 ] | ||
|
||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,13 @@ | ||
rpc: | ||
# The IP address where this RPC service registers itself; if left blank, it defaults to the internal network IP | ||
registerIP: '' | ||
# IP address that the RPC service listens on; setting to 0.0.0.0 listens on both internal and external IPs. If left blank, it automatically uses the internal network IP | ||
listenIP: 0.0.0.0 | ||
# List of ports that the RPC service listens on; configuring multiple ports will launch multiple instances. These must match the number of configured prometheus ports | ||
ports: [ 10120 ] | ||
|
||
prometheus: | ||
# Enable or disable Prometheus monitoring | ||
enable: true | ||
# List of ports that Prometheus listens on; these must match the number of rpc.ports to ensure correct monitoring setup | ||
ports: [ 20104 ] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,13 @@ | ||
rpc: | ||
# The IP address where this RPC service registers itself; if left blank, it defaults to the internal network IP | ||
registerIP: '' | ||
# IP address that the RPC service listens on; setting to 0.0.0.0 listens on both internal and external IPs. If left blank, it automatically uses the internal network IP | ||
listenIP: 0.0.0.0 | ||
# List of ports that the RPC service listens on; configuring multiple ports will launch multiple instances. These must match the number of configured prometheus ports | ||
ports: [ 10150 ] | ||
|
||
prometheus: | ||
# Enable or disable Prometheus monitoring | ||
enable: true | ||
# List of ports that Prometheus listens on; these must match the number of rpc.ports to ensure correct monitoring setup | ||
ports: [ 20103 ] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters