This commit is contained in:
parent
43a7eb233c
commit
d4d3316d18
|
@ -48,9 +48,9 @@ async function cpuUsage() {
|
|||
try {
|
||||
const data = await sysUtils.currentLoad();
|
||||
return Math.floor(data.currentload);
|
||||
}
|
||||
catch(error) {
|
||||
} catch (error) {
|
||||
console.error(error);
|
||||
throw error;
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -59,8 +59,7 @@ async function freeMem() {
|
|||
try {
|
||||
const data = await sysUtils.mem();
|
||||
return data.active;
|
||||
}
|
||||
catch(error) {
|
||||
} catch (error) {
|
||||
console.error(error);
|
||||
}
|
||||
}
|
||||
|
@ -70,8 +69,7 @@ async function totalMem() {
|
|||
try {
|
||||
const data = await sysUtils.mem();
|
||||
return data.total;
|
||||
}
|
||||
catch(error) {
|
||||
} catch (error) {
|
||||
console.error(error);
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue