Server

Monitoring

Health Check Endpoint

When running the server locally you can check the server status by visiting the health check endpoint at: http://localhost:10666/health

http://localhost:10666/health
{
  "listening": true,
  "visitors": "0",
  "capacity": "1024",
  "sent": "0",
  "recv": "0",
  "currentTime": "2025-05-09T20:19:03.200Z",
  "startTime": "2025-05-09T20:19:00.049Z",
  "version": "6"
}
VariableDefinition
listeningIs server listening for connections
visitorsThe number of current players aka visitors
capacityMaximum number of players allowed on server
sentTotal amount of data sent (in bytes?)
recvTotal amount of data received (in bytes?)
currentTimeThe current server time in ISO 8601 format
startTimeThe server's start time in ISO 8601 format
versionThe version number of the server. Important: Client code must match expected ServerVersion