Python獲取系統資訊模組psutil(轉載)
一、psutil模組
1. psutil是一個跨平臺庫(http://code.google.com/p/psutil/),能夠輕鬆實現獲取系統執行的程式和系統利用率(包括CPU、記憶體、磁碟、網路等)資訊。它主要應用於系統監控,分析和限制系統資源及程式的管理。它實現了同等命令列工具提供的功能,如ps、top、lsof、netstat、ifconfig、who、df、kill、free、nice、ionice、iostat、iotop、uptime、pidof、tty、taskset、pmap等。目前支援32位和64位的Linux、Windows、OS X、FreeBSD和Sun Solaris等作業系統,
2.安裝
wget https://pypi.python.org/packages/source/p/psutil/psutil-2.0.0.tar.gz
tar -xzvf psutil-2.0.0.tar.gz
cd psutil-2.0.0
python setup.py install
3.使用
獲取系統效能資訊(CPU,記憶體,磁碟,網路)
3.1CPU相關
檢視cpu資訊
import Psutil
檢視cpu所有資訊
>>> psutil.cpu_times()
scputimes(user=11677.09, nice=57.93, system=148675.58, idle=2167147.79, iowait=260828.48, irq=7876.28, softirq=0.0, steal=3694.59, guest=0.0, guest_nice=0.0)
顯示cpu所有邏輯資訊
>>> psutil.cpu_times(percpu=True)
[scputimes(user=11684.17, nice=57.93, system=148683.01, idle=2168982.08, iowait=260833.18, irq=7882.35, softirq=0.0, steal=3697.3, guest=0.0, guest_nice=0.0)]
檢視使用者的cpu時間比
>>> psutil.cpu_times().user
11684.4
檢視cpu邏輯個數
>>> psutil.cpu_count()
1
檢視cpu物理個數
>>> psutil.cpu_count(logical=False)
1
3.2檢視系統記憶體
>>> import psutil
>>> mem = psutil.virtual_memory()
>>> mem
#系統記憶體的所有資訊
svmem(total=1040662528, available=175054848, percent=83.2, used=965718016, free=74944512, active=566755328, inactive=59457536, buffers=9342976, cached=90767360)
系統總計記憶體
>>> mem.total
1040662528
系統已經使用記憶體
>>> mem.used
965718016
系統空閒記憶體
>>> mem.free
112779264
獲取swap記憶體資訊
>>> psutil.swap_memory()
sswap(total=0, used=0, free=0, percent=0, sin=0, sout=0)
讀取磁碟引數
磁碟利用率使用psutil.disk_usage方法獲取,
磁碟IO資訊包括read_count(讀IO數),write_count(寫IO數)
read_bytes(IO寫位元組數),read_time(磁碟讀時間),write_time(磁碟寫時間),這些IO資訊用
psutil.disk_io_counters()
獲取磁碟的完整資訊
psutil.disk_partitions()
獲取分割槽表的引數
psutil.disk_usage(`/`) #獲取/分割槽的狀態
獲取硬碟IO總個數
psutil.disk_io_counters()
獲取單個分割槽IO個數
psutil.disk_io_counters(perdisk=True) #perdisk=True引數獲取單個分割槽IO個數
讀取網路資訊
網路資訊與磁碟IO資訊類似,涉及到幾個關鍵點,包括byes_sent(傳送位元組數),byte_recv=xxx(接受位元組數),
pack-ets_sent=xxx(傳送位元組數),pack-ets_recv=xxx(接收資料包數),這些網路資訊用
獲取網路總IO資訊
psutil.net_io_counters()
輸出網路每個介面資訊
psutil.net_io_counters(pernic=True) #pernic=True
獲取當前系統使用者登入資訊
psutil.users()
獲取開機時間
psutil.boot_time() #以linux時間格式返回
datetime.datetime.fromtimestamp(psutil.boot_time ()).strftime(“%Y-%m-%d %H: %M: %S”) #轉換成自然時間格式
系統程式管理
獲取當前系統的程式資訊,獲取當前程式的執行狀態,包括程式的啟動時間,檢視設定CPU親和度,記憶體使用率,IO資訊
socket連線,執行緒數等
獲取程式資訊
檢視系統全部程式
psutil.pids()
檢視單個程式
p = psutil.Process(2423)
p.name() #程式名
p.exe() #程式的bin路徑
p.cwd() #程式的工作目錄絕對路徑
p.status() #程式狀態
p.create_time() #程式建立時間
p.uids() #程式uid資訊
p.gids() #程式的gid資訊
p.cpu_times() #程式的cpu時間資訊,包括user,system兩個cpu資訊
p.cpu_affinity() #get程式cpu親和度,如果要設定cpu親和度,將cpu號作為參考就好
p.memory_percent() #程式記憶體利用率
p.memory_info() #程式記憶體rss,vms資訊
p.io_counters() #程式的IO資訊,包括讀寫IO數字及引數
p.connectios() #返回程式列表
p.num_threads() #程式開啟的執行緒數
聽過psutil的Popen方法啟動應用程式,可以跟蹤程式的相關資訊
from subprocess import PIPE
p = psutil.Popen(["/usr/bin/python", "-c", "print(`hello`)"],stdout=PIPE)
p.name()
p.username()
相關文章
- psutil獲取作業系統負載資訊作業系統負載
- Python自動化運維之psutil系統效能資訊模組Python運維
- psutil模組詳解
- Python 系統資源資訊獲取工具,你用過沒?Python
- Python下獲取視訊的旋轉角度資訊Python
- Metasploit AFP資訊獲取模組afp_server_infoServer
- Python對系統資料進行採集監控——psutilPython
- vmi:獲取 windows 系統硬體資訊Windows
- SAP ABAP使用CDS獲取系統資訊
- requests模組獲取cookieCookie
- 獲取計算機系統唯一資訊計算機
- golang gopsutil 程式 系統硬體資訊 獲取Golang
- Python 常用系統模組整理Python
- 【Python】獲取機器使用資訊Python
- Python量化交易系統實戰--獲取股票資料Python
- Bash 實現 Linux 版 sysinfo 獲取系統資訊Linux
- Windows系統安全獲取重要資訊的方法(一)Windows
- Python基礎:常用系統模組Python
- python下載模組Python
- 使用Python獲取ECS相關資訊Python
- 【Python小隨筆】 SSH 獲取資訊Python
- 獲取系統字型,獲取系統預設字型
- Inxi:獲取Linux系統和硬體資訊的神器Linux
- [轉載] Python日曆模組| 使用示例的weekday()方法Python
- HGDB怎麼獲取資料庫中關鍵系統資訊資料庫
- Python 獲取檔案系統使用率Python
- Python呼叫ansible API系列(一)獲取資產資訊PythonAPI
- 獲取windows 作業系統下的硬體或作業系統資訊等Windows作業系統
- python常用標準庫(os系統模組、shutil檔案操作模組)Python
- 獲取位置資訊
- 快速獲取昨天的日期(time模組使用)
- PHP外掛系統的實現(二):獲取全部外掛資訊PHP
- python 呼叫 shell ,獲取返回值和返回資訊Python
- python使用ldap3獲取使用者資訊PythonLDA
- 獲取系統時間
- Python獲取jsonp資料PythonJSON
- 利用DBMS_METADATA包獲取許可權資訊(轉)
- Python實現模組熱載入Python
- Python 模組的載入順序Python