The stats endpoint returns server runtime statistics and counters.
```
-❯ curl -s localhost:5603/api/v1/stats | jq .
+❯ curl -s localhost:5503/api/v1/stats | jq .
{
"ConnectionCounter": 0,
"ConnectionPeak": 0,
Example:
```
-❯ curl -s localhost:5603/api/v1/reload | jq .
+❯ curl -s localhost:5503/api/v1/reload | jq .
{
"msg": "config reloaded"
}
Example:
```
-❯ curl -d 'Server rebooting' localhost:5603/api/v1/shutdown
+❯ curl -d 'Server rebooting' localhost:5503/api/v1/shutdown
{ "msg": "server shutting down" }
```