parent
778e374712
commit
b0a58214d8
@ -1,7 +1,13 @@
|
|||||||
|
# Log storage path, default is acceptable, change to a full path if modification is needed
|
||||||
storageLocation: ../../../../logs/
|
storageLocation: ../../../../logs/
|
||||||
|
# Log rotation period (in hours), default is acceptable
|
||||||
rotationTime: 24
|
rotationTime: 24
|
||||||
|
# Number of log files to retain, default is acceptable
|
||||||
remainRotationCount: 2
|
remainRotationCount: 2
|
||||||
|
# Log level settings: 3 for production environment; 6 for more verbose logging in debugging environments
|
||||||
remainLogLevel: 6
|
remainLogLevel: 6
|
||||||
|
# Whether to output to standard output, default is acceptable
|
||||||
isStdout: false
|
isStdout: false
|
||||||
|
# Whether to log in JSON format, default is acceptable
|
||||||
isJson: false
|
isJson: false
|
||||||
withStack: false
|
|
||||||
|
@ -1,8 +1,13 @@
|
|||||||
api:
|
api:
|
||||||
|
# Listening IP; 0.0.0.0 means both internal and external IPs are listened to, default is recommended
|
||||||
listenIP: 0.0.0.0
|
listenIP: 0.0.0.0
|
||||||
|
# Listening ports; if multiple are configured, multiple instances will be launched, must be consistent with the number of prometheus.ports
|
||||||
ports: [ 10002 ]
|
ports: [ 10002 ]
|
||||||
|
|
||||||
prometheus:
|
prometheus:
|
||||||
|
# Whether to enable prometheus
|
||||||
enable: true
|
enable: true
|
||||||
|
# Prometheus listening ports, must match the number of api.ports
|
||||||
ports: [ 20113 ]
|
ports: [ 20113 ]
|
||||||
grafanaURL: webhook://127.0.0.1:13000/
|
# This address can be accessed via a browser
|
||||||
|
grafanaURL: http://127.0.0.1:13000/
|
||||||
|
@ -1,10 +1,17 @@
|
|||||||
rpc:
|
rpc:
|
||||||
|
# API or other RPCs can access this RPC through this IP; if left blank, the internal network IP is obtained by default
|
||||||
registerIP: ''
|
registerIP: ''
|
||||||
|
# Listening IP; 0.0.0.0 means both internal and external IPs are listened to, if blank, the internal network IP is automatically obtained by default
|
||||||
listenIP: 0.0.0.0
|
listenIP: 0.0.0.0
|
||||||
|
# Listening ports; if multiple are configured, multiple instances will be launched, and must be consistent with the number of prometheus.ports
|
||||||
ports: [ 10110 ]
|
ports: [ 10110 ]
|
||||||
|
|
||||||
prometheus:
|
prometheus:
|
||||||
|
# Whether to enable prometheus
|
||||||
enable: true
|
enable: true
|
||||||
|
# Prometheus listening ports, must be consistent with the number of rpc.ports
|
||||||
ports: [ 20100 ]
|
ports: [ 20100 ]
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
Reference in new issue