/memory
/api/memory
/api/memoryOverview
Endpoint
GET /api/memoryExample
fetch('/api/memory')
.then(response => response.json())
.then(data => {
console.log(`Memory Usage: ${data.memoryUsage}%`);
});Response
{
"memoryUsage": "72.35"
}Description
Last updated