Fivetrack is fork of Minetrack, popular tracker of favourite Minecraft servers. This fork changed tracking Minecraft servers to FiveM servers by their unique server slug ID.
- ๐ Real time server player count tracking with customizable update speed.
- ๐ Historical player count logging with 24 hour peak and player count record tracking.
- ๐ Historical graph with customizable time frame.
- ๐ฆ Out of the box included dashboard with various customizable sorting and viewing options.
- Node 12.4.0+ is required (you can check your version using
node -v
) - Make sure everything is correct in
config.json
. - Add/remove servers by editing the
servers.json
file - Run
npm install
- Run
npm run build
(this bundlesassets/
intodist/
) - Run
node main.js
to boot the system (may need sudo!)
(There's also install.sh
and start.sh
, but they may not work for your OS.)
Database logging is disabled by default. You can enable it in config.json
by setting logToDatabase
to true.
This requires sqlite3 drivers to be installed.
Minetrack can be built and run with Docker from this repository in several ways:
# build and start service
docker-compose up --build
# stop service and remove artifacts
docker-compose down