SunilWang / node-os-utils

OS Utils - An operating system utility library.
https://www.npmjs.com/package/node-os-utils
MIT License
126 stars 19 forks source link

空闲内存计算错误 #3

Closed AndrewGoal closed 4 years ago

AndrewGoal commented 5 years ago

https://github.com/SunilWang/node-os-utils/blob/64d8e1e957de1192cd76c5b9b018c2daaf41f09b/lib/mem.js#L76

应该是:

freeMem = (parseInt(resultMemory[1], 10) + parseInt(resultMemory[3], 10) + parseInt(resultMemory[4], 10)) * 1024

括号不对,导致计算有误

SunilWang commented 4 years ago

Fix free memory calculation equation.

https://github.com/SunilWang/node-os-utils/pull/4