Node.js 中的 process.cpuUsage() 方法
process.argv() 方法用于获取当前运行进程的用户及其 CPU 使用率。数据以带有 user 和 system 属性的对象返回。获得的值以微秒为单位,即 10^-6 秒。如果多个内核为正在运行的进程执行工作,则返回的值可能大于实际经过的时间。
语法
process.cpuUsage([previousValue])
参数
该方法仅接受一个参数,该参数的定义如下 -
previousValue – 这是一个可选参数。这是通过调用 process.cpuUsage() 方法返回的上一个返回值。
示例
创建一个名为 cpuUsage.js 的文件,并复制以下代码片段。创建文件后,使用以下命令运行此代码,如下例所示 -
node cpuUsage.js
cpuUsage.js
// Node.js program to demonstrate the use of process.argv // Importing the process module const process = require('process'); // Getting the cpu usage details by calling the below method const usage = process.cpuUsage(); // Printing the cpu usage values console.log(usage);
输出
admin@root:~/node/test$ node cpuUsage.js { user: 352914, system: 19826 }
示例
让我们看另一个示例。
// Node.js program to demonstrate the use of process.argv // Importing the process module const process = require('process'); // Getting the cpu usage details by calling the below method var usage = process.cpuUsage(); // Printing the cpu usage values console.log("cpu usage before: ", usage); // Printing the current time stamp const now = Date.now(); // Looping to delay the process for 100 milliseconds while (Date.now() - now < 100); // After using the cpu for nearly 100ms // calling the process.cpuUsage() method again... usage = process.cpuUsage(usage); // Printing the new cpu usage values console.log("Cpu usage by this process: ", usage);
输出
admin@root:~/node/test$ node cpuUsage.js cpu usage before: { user: 357675, system: 32150 } Cpu usage by this process: { user: 93760, system: 95 }
广告