This commit is contained in:
Aya Morisawa 2018-07-27 17:47:10 +09:00
parent 64f174c037
commit 771d5cdf8a

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;