- Node.js教程
- Node.js - 教程
- Node.js - 简介
- Node.js - 环境设置
- Node.js - 首次申请
- Node.js - REPL 终端
- Node.js - 命令行选项
- Node.js - 包管理器 (NPM)
- Node.js - 回调概念
- Node.js - 上传文件
- Node.js - 发送电子邮件
- Node.js - 活动
- Node.js - 事件循环
- Node.js - 事件发射器
- Node.js - 调试器
- Node.js - 全局对象
- Node.js - 控制台
- Node.js - 流程
- Node.js - 扩展应用程序
- Node.js - 包装
- Node.js - Express 框架
- Node.js - RESTful API
- Node.js - 缓冲器
- Node.js - Streams
- Node.js - 文件系统
- Node.js MySQL
- Node.js - MySQL 快速入门
- Node.js - MySQL创建数据库
- Node.js - MySQL创建表
- Node.js - MySQL Insert Into
- Node.js - MySQL Select From
- Node.js - MySQL Where 子句
- Node.js - MySQL Order By
- Node.js - MySQL Delete
- Node.js - MySQL Update
- Node.js - MySQL Join
- Node.js MongoDB
- Node.js - MongoDB 快速入门
- Node.js - MongoDB 创建数据库
- Node.js - MongoDB 创建集合
- Node.js - MongoDB Insert
- Node.js - MongoDB Find
- Node.js - MongoDB 查询
- Node.js - MongoDB 排序
- Node.js - MongoDB Delete
- Node.js - MongoDB Update
- Node.js - MongoDB Limit
- Node.js - MongoDB Join
- Node.js模块
- Node.js - 模块
- Node.js - 内置模块
- Node.js - utility 模块
- Node.js - Web 模块
Node.js - os.loadavg() 方法
Node.js 的 os 模块提供了一堆与操作系统相关的实用方法和属性。
Node.js os.loadavg() 方法将返回一个包含 1、5 和 15 分钟平均负载的数组。平均负载是系统活动的度量值,它将由操作系统计算,并显示为小数。
负载平均是 Unix 特有的概念。当在 Windows 操作系统上编译 os.loadavg() 方法时,它将始终返回结果数组为 [0, 0, 0]。
语法以下是Node.js os.loadavg()方法的示例 -
os.loadavg()
参数
此方法不接受任何参数。
返回值此方法将返回一个数字数组,其中包含系统活动的 1、5 和 15 分钟平均负载。
例在以下示例中,我们尝试在 WINDOWS 操作系统上执行Node.js os.loadavg() 方法。
const os = require('os');
console.log(os.loadavg());
输出
注 −为了获得准确的结果,最好在本地执行上述代码。
如果我们编译并运行上述程序,os.loadavg() 方法将返回一个数字数组为 [0, 0, 0],因为它是在 Windows 操作系统上编译的,而在 Windows 上返回值始终为 [0, 0, 0]。
例
在下面的示例中,我们尝试记录 WINDOWS 操作系统上系统活动的 1、5 和 15 分钟平均负载。
const os = require('os');
var load_avg = os.loadavg();
function func() {
console.log("The average Load of 1 minute in windows is :" + load_avg[0]);
console.log("The average Load of 5 minute in windows is :" + load_avg[1]);
console.log("The average Load of 15 minute in windows is :" + load_avg[2]);
}
func();
输出
The average Load of 5 minute in windows is :2.28466796875
The average Load of 15 minute in windows is :2.71630859375
注 −为了获得准确的结果,最好在本地执行上述代码。
在 Windows 操作系统上执行上述程序后,os.loadavg() 方法将系统活动的 1、5 和 15 分钟平均负载记录为 0、0 和 0。
The average Load of 5 minute in windows is :0
The average Load of 15 minute in windows is :0
例
在下面的示例中,我们尝试在 LINUX 操作系统上执行 os.loadavg() 方法。
const os = require('os');
console.log(os.loadavg());
输出
如果我们在 LINUX 操作系统上编译并运行上述程序,os.loadavg() 方法将返回一个由一些小数组成的数字数组,如下面的输出所示。
例
在下面的示例中,我们尝试记录 LINUX 操作系统上系统活动的 1、5 和 15 分钟平均负载。
const os = require('os');
var load_avg = os.loadavg();
function func() {
console.log("The average Load of 1 minute in LINUX is :" + load_avg[0]);
console.log("The average Load of 5 minute in LINUX is :" + load_avg[1]);
console.log("The average Load of 15 minute in LINUX is :" + load_avg[2]);
}
func();
输出
The average Load of 5 minute in LINUX is :2.43408203125
The average Load of 15 minute in LINUX is :2.9912109375