/cpu
/api/cpu
/api/cpuOverview
Endpoint
GET /api/cpuExample
fetch('/api/cpu')
.then(response => response.json())
.then(data => {
console.log(`CPU Load: ${data.cpuLoad}%`);
});Response
{
"cpuLoad": "15.34"
}Description
Last updated