System Properties
Configure FastStats using system properties
System properties provide runtime control over FastStats behavior.
These flags only affect the current running server session/instance and are not persisted.
faststats.debug
Enable debug logging for all FastStats projects.
Usage:
java -Dfaststats.debug=true -jar server.jarValues:
true- Enable debug loggingfalse- Disable debug logging
faststats.enabled
Enable or disable FastStats data transmission globally.
Usage:
java -Dfaststats.enabled=false -jar server.jarValues:
true- Enable data transmissionfalse- Disable data transmission
faststats.initial-delay
Configure the initial delay before FastStats starts collecting metrics.
This flag is meant to be used during development to delay or speed up the start of metric collection.
Usage:
java -Dfaststats.initial-delay=5 -jar server.jarValues:
- Time in seconds (default:
30)