cURL
curl --request GET \ --url http://localhost:8080/user/usage \ --cookie _me_sess=
{ "cpu": { "usage": 123, "cores": 123, "threads": 123 }, "memory": { "used": 123, "total": 123 }, "disk": { "used": 123, "total": 123 } }
Get the current CPU, memory and disk usage of the server.
Session token for authentication.
"_me_sess=token; Path=/; HttpOnly; SameSite=Lax; Secure"
OK
Response body for getting CPU, memory and disk usage of the server.
Show child attributes