Use os-utils
This commit is contained in:
parent
2347d9cea2
commit
3d8b45ecdd
|
@ -160,6 +160,7 @@
|
|||
"nprogress": "0.2.0",
|
||||
"object-assign-deep": "0.4.0",
|
||||
"on-build-webpack": "0.1.0",
|
||||
"os-utils": "0.0.14",
|
||||
"parse5": "5.0.0",
|
||||
"portscanner": "2.2.0",
|
||||
"progress-bar-webpack-plugin": "1.11.0",
|
||||
|
|
|
@ -2,6 +2,7 @@ import * as os from 'os';
|
|||
import * as sysUtils from 'systeminformation';
|
||||
import * as diskusage from 'diskusage';
|
||||
import Xev from 'xev';
|
||||
const osUtils = require('os-utils');
|
||||
|
||||
const ev = new Xev();
|
||||
|
||||
|
@ -44,14 +45,12 @@ export default function() {
|
|||
}
|
||||
|
||||
// CPU STAT
|
||||
async function cpuUsage() {
|
||||
try {
|
||||
const data = await sysUtils.currentLoad();
|
||||
return Math.floor(data.currentload / 100);
|
||||
} catch (error) {
|
||||
console.error(error);
|
||||
throw error;
|
||||
}
|
||||
function cpuUsage() {
|
||||
return new Promise((res, rej) => {
|
||||
osUtils.cpuUsage((cpuUsage: number) => {
|
||||
res(cpuUsage);
|
||||
});
|
||||
});
|
||||
}
|
||||
|
||||
// MEMORY(excl buffer + cache) STAT
|
||||
|
|
Loading…
Reference in New Issue