This commit is contained in:
syuilo 2018-07-27 18:18:05 +09:00
parent 32117a573b
commit 6b19e54c23
3 changed files with 4 additions and 5 deletions

View file

@ -102,7 +102,6 @@ export default Vue.extend({
},
methods: {
onStats(stats) {
stats.mem.used = stats.mem.total - stats.mem.free;
this.stats.push(stats);
if (this.stats.length > 50) this.stats.shift();

View file

@ -35,7 +35,7 @@ export default Vue.extend({
},
methods: {
onStats(stats) {
stats.mem.used = stats.mem.total - stats.mem.free;
stats.mem.free = stats.mem.total - stats.mem.used;
this.usage = stats.mem.used / stats.mem.total;
this.total = stats.mem.total;
this.used = stats.mem.used;

View file

@ -19,7 +19,7 @@ export default function() {
async function tick() {
const cpu = await cpuUsage();
const freemem = await freeMem();
const usedmem = await usedMem();
const totalmem = await totalMem();
const disk = diskusage.checkSync(os.platform() == 'win32' ? 'c:' : '/');
@ -27,7 +27,7 @@ export default function() {
cpu_usage: cpu,
mem: {
total: totalmem,
free: freemem
used: usedmem
},
disk,
os_uptime: os.uptime(),
@ -55,7 +55,7 @@ async function cpuUsage() {
}
// MEMORY(excl buffer + cache) STAT
async function freeMem() {
async function usedMem() {
try {
const data = await sysUtils.mem();
return data.active;