fabric-exporter/src/main/resources/config/exporter.properties

49 lines
1.8 KiB
Properties
Raw Normal View History

2021-05-25 22:24:13 +03:00
# On which port webserver should be started?
# Default: 25585
server-port=25585
2021-05-25 22:24:13 +03:00
# 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
2021-05-25 21:25:49 +03:00
update-interval=1000
2021-05-25 22:24:13 +03:00
# 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
# You can disable any metric that registered via MetricRegistry (all metrics by default) using the settings below
2021-06-24 22:19:32 +03:00
# Names of properties consist of "enable" and metric name without prefix and "_" replaced with "-"
2021-05-25 22:24:13 +03:00
# For example, if you want to disable "minecraft_players_online", you should set "enable-players-online" to "false"
2021-05-26 00:08:36 +03:00
# If you can't find property for some metrics, you can manually add it
2021-05-25 22:24:13 +03:00
# 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