This commit is contained in:
Aya Morisawa 2018-07-27 17:47:10 +09:00
parent d4d3316d18
commit 32117a573b
1 changed files with 1 additions and 1 deletions

View File

@ -47,7 +47,7 @@ export default function() {
async function cpuUsage() {
try {
const data = await sysUtils.currentLoad();
return Math.floor(data.currentload);
return Math.floor(data.currentload / 100);
} catch (error) {
console.error(error);
throw error;