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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。