Compatibility
Minecraft: Java Edition
1.21–1.21.5
1.20.x
1.19.x
1.18.x
1.17.x
Platforms
75% of ad revenue goes to creators
Support creators and Modrinth ad-free with Modrinth+Creators
Details
Licensed ARR
Published last month
Updated last month
AH StatusAPI
Overview
ServerStatusAPI is a powerful monitoring plugin for Minecraft servers that collects comprehensive performance data and provides it through a REST API. It allows server administrators to monitor key metrics in real-time and analyze historical data without impacting server performance.
You can also use our own Dashboard for monitoring! https://ah-dashboard.replit.app/
It has advanced Monitoring Features and analitcs (check out Gallery for Pictures). It was fully build with this API.
Note that the Plugin and the Website is still in beta.
In order to work correctly the Server need to be restarted daily once.
The Ping currently only works if a player is online.
Features
- Real-time monitoring of server performance metrics (TPS, RAM, CPU)
- RESTful API for easy integration with external tools and dashboards
- Player tracking with playtime and ping statistics
- Entity monitoring per world with detailed distribution by type
- Historical data for trend and performance analysis
- Configurable data collection with adjustable intervals
- Database storage with SQLite (optionally disabled)
- Resource-friendly through optimized data collection
Coming Soon!
- Multi-World Support
- Console Integration
- custom Discord bot for Server Status
Configuration
Before you can start using it, you need to specify the port in the config.yml on which the Server will run the API.
After that you can access your API here:
http://serverip:port/metrics/current
API Endpoints
- /metrics/current - Current server status data
- /metrics/history - Historical performance data
- /metrics/players - Player data with playtime statistics
- /metrics/entities - Entity distribution by worlds
Example data for each Endpoint
/metrics/current
{
"cpuUsage": 0.06,
"uptimeMillis": 76504272,
"memory": {
"max": 2147483648,
"used": 716963360
},
"maxPlayers": 100,
"onlinePlayers": 0,
"tps": 20.0000152480116,
"ping": 0,
"players": [],
"serverAddress": "serverip",
"loadedChunks": 147,
"timestamp": 1746884632413
}
/metrics/entitys
{
"counts": {
"nether": 4,
"overworld": 3,
"the_end": 10
},
"distribution": {
"nether": {
"STRIDER": 4
},
"overworld": {
"CHEST_MINECART": 3
},
"the_end": {
"END_CRYSTAL": 10
}
}
}
/metrics/players
[
{
"totalPlaytimeMillis": 26095444,
"name": "MeisterAH",
"uuid": "debb8545-6216-4115-bc21-11c3529e3a3a"
},
{
"totalPlaytimeMillis": 384016,
"name": "Nickkyy_",
"uuid": "095ecf90-6a7e-42eb-84eb-efd1c5f4417f"
},
{
"totalPlaytimeMillis": 26416194,
"name": "Schwabbel_Split",
"uuid": "63a3ae68-0d98-4428-91e5-b4862d8b4e62"
},
{
"totalPlaytimeMillis": 2268454,
"name": "Jak0bUVA",
"uuid": "fefca110-bcc9-483a-b647-54afc3ce9ba5"
},
{
"totalPlaytimeMillis": 2267672,
"name": "Maxomito",
"uuid": "9dd498e6-517a-4b33-9d0a-57747e5c4e4f"
}
]
/metrics/history (if enabled, default true)
{
"cpuUsage": 0.06,
"uptimeMillis": 81362446,
"memory": {
"max": 2147483648,
"used": 631376208
},
"maxPlayers": 100,
"onlinePlayers": 0,
"entityCount": 17,
"tps": 20.0000402534144,
"ping": 0,
"players": [],
"serverAddress": "123.123.123.123",
"loadedChunks": 147,
"timestamp": 1746889490587
},
{
"cpuUsage": 0,
"uptimeMillis": 81361458,
"memory": {
"max": 2147483648,
"used": 619055352
},
"maxPlayers": 100,
"onlinePlayers": 0,
"entityCount": 17,
"tps": 19.9999879986739,
"ping": 0,
"players": [],
"serverAddress": "123.123.123.123",
"loadedChunks": 147,
"timestamp": 1746889489600
},
{
"cpuUsage": 0.06,
"uptimeMillis": 81360450,
"memory": {
"max": 2147483648,
"used": 619055352
},
"maxPlayers": 100,
"onlinePlayers": 0,
"entityCount": 17,
"tps": 19.9999989690001,
"ping": 0,
"players": [],
"serverAddress": "123.123.123.123",
"loadedChunks": 147,
"timestamp": 1746889489600
}
[...]