Add comments to the default config
This commit is contained in:
parent
a3ef97f821
commit
305699a1fd
1 changed files with 47 additions and 1 deletions
|
@ -1,3 +1,49 @@
|
||||||
|
# On which port webserver should be started?
|
||||||
|
# Default: 25585
|
||||||
server-port=25585
|
server-port=25585
|
||||||
|
|
||||||
|
# FabricExporter updates gauge metrics every N milliseconds
|
||||||
|
# You can change this value if you want metrics to be updated more or less frequently
|
||||||
|
# Value must be provided in milliseconds, 1 second = 1000 milliseconds
|
||||||
|
# Default: 1000
|
||||||
update-interval=1000
|
update-interval=1000
|
||||||
|
|
||||||
|
# Should FabricExporter use Spark mod (https://spark.lucko.me) to collect TPS and MSPT metrics?
|
||||||
|
# If disabled, TPS and MSPT metrics will not be collected, values of enable-mspt and enable-tps are overridden in this case
|
||||||
|
# If enabled, Fabric version of Spark must be installed
|
||||||
|
# Default: true
|
||||||
use-spark=true
|
use-spark=true
|
||||||
|
|
||||||
|
# You can disable any metric that registered via MetricRegistry (all metrics by default) using the settings below
|
||||||
|
# Names of properties consist of "enabled" and metric name without prefix and "_" replaced with "-"
|
||||||
|
# For example, if you want to disable "minecraft_players_online", you should set "enable-players-online" to "false"
|
||||||
|
# If you can't find property for some metrics, you can manually add them
|
||||||
|
# All metrics are enabled by default
|
||||||
|
|
||||||
|
# Exports amount of currently loaded chunks on server
|
||||||
|
# Collected by Minecraft
|
||||||
|
enable-loaded-chunks=true
|
||||||
|
|
||||||
|
# Exports amount of total loaded chunks on server
|
||||||
|
# Collected by Minecraft
|
||||||
|
enable-total-loaded-chunks=true
|
||||||
|
|
||||||
|
# Exports count of milliseconds per tick (MSPT)
|
||||||
|
# Collected by Spark. If enabled, requires Spark to be installed
|
||||||
|
enable-mspt=true
|
||||||
|
|
||||||
|
# Exports count of ticks per second (TPS)
|
||||||
|
# Collected by Spark. If enabled, requires Spark to be installed
|
||||||
|
enable-tps=true
|
||||||
|
|
||||||
|
# Exports amount of currently online players on your server
|
||||||
|
# Collected by FabricExporter
|
||||||
|
enable-players-online=true
|
||||||
|
|
||||||
|
# Exports amount of currently loaded entities on your server
|
||||||
|
# Collected by FabricExporter
|
||||||
|
enable-entities=true
|
||||||
|
|
||||||
|
# Exports count of handshake requests
|
||||||
|
# Collected by FabricExporter
|
||||||
|
enable-handshakes=true
|
Loading…
Reference in a new issue