admin管理员组文章数量:1341401
I have used "os" .html#os_os To attempt to calculate some system stats for use in an app.
However I notice that it cannot actually calculate the memory properly, because it leaves out the cache and buffers witch is needed to properly calculate a single readable percentage. Without it the memory will almost always be 90%+ with most high performance servers (based on my testing).
I would need to calculate it like so:
(CURRENT_MEMORY-CACHED_MEMORY-BUFFER_MEMORY)*100/TOTAL_MEMORY
This should get me a more accurate % of memory being used by the system. But the os module and most other node.js modules I have seen only get me total and current memory.
Is there any way to do this in node.js? I can use Linux but I do not know the ins and outs of the system to know where to look to figure this out on my own (file to read to get this information, like top/htop).
I have used "os" http://nodejs/api/os.html#os_os To attempt to calculate some system stats for use in an app.
However I notice that it cannot actually calculate the memory properly, because it leaves out the cache and buffers witch is needed to properly calculate a single readable percentage. Without it the memory will almost always be 90%+ with most high performance servers (based on my testing).
I would need to calculate it like so:
(CURRENT_MEMORY-CACHED_MEMORY-BUFFER_MEMORY)*100/TOTAL_MEMORY
This should get me a more accurate % of memory being used by the system. But the os module and most other node.js modules I have seen only get me total and current memory.
Is there any way to do this in node.js? I can use Linux but I do not know the ins and outs of the system to know where to look to figure this out on my own (file to read to get this information, like top/htop).
Share asked Dec 14, 2013 at 0:08 Jordan RamstadJordan Ramstad 1793 gold badges9 silver badges37 bronze badges2 Answers
Reset to default 5Based on Determining free memory on Linux, Free memory = free + buffers + cache.
Following example includes values derived from node os methods for parison (which are useless)
var spawn = require("child_process").spawn;
var prc = spawn("free", []);
var os = require("os");
prc.stdout.setEncoding("utf8");
prc.stdout.on("data", function (data) {
var lines = data.toString().split(/\n/g),
line = lines[1].split(/\s+/),
total = parseInt(line[1], 10),
free = parseInt(line[3], 10),
buffers = parseInt(line[5], 10),
cached = parseInt(line[6], 10),
actualFree = free + buffers + cached,
memory = {
total: total,
used: parseInt(line[2], 10),
free: free,
shared: parseInt(line[4], 10),
buffers: buffers,
cached: cached,
actualFree: actualFree,
percentUsed: parseFloat(((1 - (actualFree / total)) * 100).toFixed(2)),
parePercentUsed: ((1 - (os.freemem() / os.totalmem())) * 100).toFixed(2)
};
console.log("memory", memory);
});
prc.on("error", function (error) {
console.log("[ERROR] Free memory process", error);
});
Thanks to leorex.
Check for process.platform === "linux"
From reading the documentation, I am afraid that you do not have any native solution. However, you can always call 'free' from mand line directly. I put together the following code based on Is it possible to execute an external program from within node.js?
var spawn = require('child_process').spawn;
var prc = spawn('free', []);
prc.stdout.setEncoding('utf8');
prc.stdout.on('data', function (data) {
var str = data.toString()
var lines = str.split(/\n/g);
for(var i = 0; i < lines.length; i++) {
lines[i] = lines[i].split(/\s+/);
}
console.log('your real memory usage is', lines[2][3]);
});
prc.on('close', function (code) {
console.log('process exit code ' + code);
});
本文标签: javascriptNodejs get actual memory usage as a percentStack Overflow
版权声明:本文标题:javascript - Node.js get actual memory usage as a percent - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743673971a2520000.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论