【Python】獲取機器使用資訊
獲取機器使用資訊
# -*- coding:utf-8 -*-
import socket
import os, psutil
#!/usr/bin/env python
# def getInfo():
# cores = "Physical Cores:%s" % psutil.cpu_count(logical=False) + " "
# cpu = "CPU usage:%0.2f"%psutil.cpu_percent(interval=1)+"%" + " "
# memory = "Memory usage:%d"%(int(round(psutil.virtual_memory().percent)))+"%"+" "
# swap = "Swap usage:%0.2f"%(psutil.swap_memory().percent) + "%" + " "
# disk = "Disk usage:%0.2f"%(psutil.disk_usage('/').percent) + "%" + " "
# loadavg = "Load average:%s"%(str(os.getloadavg())) + " "
# return cores+cpu+memory+swap+disk+loadavg
def getInfo():
hostname = socket.gethostname() + "\n"
cores = "物理核心數:%s" % psutil.cpu_count(logical=False) + " "
swap = "Swap分割槽使用率:%0.2f"%(psutil.swap_memory().percent) + "%" + " "
disk = "硬碟使用率:%0.2f"%(psutil.disk_usage('/').percent) + "%" + " "
cpu = "CPU使用率:%0.2f"%psutil.cpu_percent(interval=1)+"%" + " "
memory = "記憶體使用率:%d"%(int(round(psutil.virtual_memory().percent)))+"%"+" "
loadavg = "系統負載:%s"%(str(os.getloadavg())) + " "
return hostname+cores+swap+disk+cpu+memory+loadavg
if __name__ == "__main__":
info = getInfo()
print(info)
相關文章
- 使用Python獲取ECS相關資訊Python
- python使用ldap3獲取使用者資訊PythonLDA
- Python Web 框架 Django 如何使用jwt獲取使用者資訊PythonWeb框架DjangoJWT
- ipmitool獲取伺服器資訊MIT伺服器
- 【Python小隨筆】 SSH 獲取資訊Python
- python 獲取linux本機資訊【十全十美】PythonLinux
- 使用捕獲 獲取身份證號的資訊
- python使用cx_Oracle連線oracle資料庫獲取常用資訊PythonOracle資料庫
- 使用 javascript 獲取瀏覽器(或 WKWebView)的安全區資訊JavaScript瀏覽器WebView
- 【VMware ESXi】使用 smbiosDump 命令獲取伺服器硬體資訊。iOS伺服器
- flowable 重構流程編輯器獲取使用者資訊
- Python下獲取視訊的旋轉角度資訊Python
- Python呼叫ansible API系列(一)獲取資產資訊PythonAPI
- 使用URLConnection物件獲取網路資源資訊物件
- 獲取位置資訊
- 使用Python獲取HTTP請求頭資料PythonHTTP
- 獲取微信使用者基本資訊
- SAP ABAP使用CDS獲取系統資訊
- thinkphp6 使用FFMpeg獲取影片資訊PHP
- 使用 C# 獲取 Kubernetes 叢集資源資訊C#
- iOS 獲取本機的裝置資訊UIDeviceiOSUIIDEdev
- 獲取計算機系統唯一資訊計算機
- Java解析微信獲取手機號資訊Java
- python如何獲取本機ipPython
- python 呼叫 shell ,獲取返回值和返回資訊Python
- Python獲取jsonp資料PythonJSON
- 微信小程式 獲取使用者資訊微信小程式
- 使用PHP獲取影像檔案的EXIF資訊PHP
- Python 系統資源資訊獲取工具,你用過沒?Python
- 使用**迭代器**獲取Cifar等常用資料集
- Oracle獲取所有表名資訊和獲取指定表名欄位資訊Oracle
- Python獲取IP地址對應的地理位置資訊!Python
- Python 爬蟲獲取網易雲音樂歌手資訊Python爬蟲
- 『OpenCV-Python』獲取圖片的基本引數資訊OpenCVPython
- python-help()獲取關於物件的幫助資訊Python物件
- python爬蟲,獲取中國工程院院士資訊Python爬蟲
- 利用Python爬蟲獲取招聘網站職位資訊Python爬蟲網站
- 使用Python呼叫API介面獲取淘寶商品資料PythonAPI