Python中的OS模块提供了与操作系统进行交互的函数。操作系统属于Python的标准实用程序模块。该模块提供了使用依赖于操作系统的函数的便携式方法。
os.getloadavg()
Python中的方法用于获取最近1分钟,5分钟和15分钟的平均负载。平均负载是在1分钟,5分钟和15分钟内给定时间段内系统运行队列中进程数的平均值。如果无法获得平均负载,则此方法将引发OSError。
注意:此方法仅在UNIX平台上可用。
用法: os.getloadavg()
参数:不需要任何参数。
返回类型:此方法返回一个由float值组成的元组对象,该值表示最近1分钟,5分钟和15分钟的平均负载。
代码:使用os.getloadavg()方法来获取最近1分钟,5分钟和15分钟的平均负载。
# Python program to explain os.getloadavg() method
# importing os module
import os
# Get the load average over
# the last 1, 5, and 15 minutes
# using os.getloadavg() method
load1, load5, load15 = os.getloadavg()
# Print the load average over
# the last 1, 5, and 15 minutes
print("Load average over the last 1 minute:", load1)
print("Load average over the last 5 minute:", load5)
print("Load average over the last 15 minute:", load15)
输出:
Load average over the last 1 minute:0.34 Load average over the last 5 minute:0.42 Load average over the last 15 minute:0.46
相关用法
- Python next()用法及代码示例
- Python os.dup()用法及代码示例
- Python set()用法及代码示例
- Python Decimal max()用法及代码示例
- Python PIL ImageOps.fit()用法及代码示例
- Python os.rmdir()用法及代码示例
- Python sympy.det()用法及代码示例
- Python Decimal min()用法及代码示例
- Python os.readlink()用法及代码示例
- Python os.writev()用法及代码示例
- Python os.readv()用法及代码示例
- Python PIL RankFilter()用法及代码示例
- Python os.rename()用法及代码示例
- Python os.sendfile()用法及代码示例
注:本文由纯净天空筛选整理自ihritik大神的英文原创作品 Python | os.getloadavg() method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。