1. 程式人生 > >python模組 - psutil python模組之psutil詳解

python模組 - psutil python模組之psutil詳解

一、psutil模組:

1. psutil模組簡介

        他是一個跨平臺庫 ( http://pythonhosted.org/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. 安裝psutil模組

CentOS安裝psutil包:
python版本:3.5
 
wget https://pypi.python.org/packages/source/p/psutil/psutil-3.2.1.tar.gz --no-check-certificate
tar zxvf psutil-3.2.1.tar.gz
cd psutil-3.2.1
python setup.py install
 
Windos安裝psutil包:
 
D:\python35\Scripts>pip3.exe install psutil
Collecting psutil
  Downloading psutil
-5.3.1-cp35-cp35m-win_amd64.whl (215kB) 100% |████████████████████████████████| 225kB 84kB/s Installing collected packages: psutil Successfully installed psutil-5.3.1

 二、.獲取系統基本資訊的使用:

1. CPU資訊

        使用cpu_times方法獲取cpu的完整資訊,如下所示。

>>> psutil.cpu_times()
scputimes(user
=650613.02, nice=22.14, system=154916.5, idle=16702285.26, iowait=68894.55, irq=3.38, softirq=7075.65, steal=0.0, guest=0.0) >>>

        獲取單個數據,如使用者的cpu時或io等待時間,如下所示:

>>> psutil.cpu_times().user
650617.11
>>> psutil.cpu_times().iowait
68894.63
>>> 

        獲取cpu邏輯和物理個數,預設logical值為True 。

CPU邏輯個數:
>>> psutil.cpu_count()
2
CPU物理個數:
>>> psutil.cpu_count(logical=False)
1
>>> 

        獲取cpu的使用率:

>>> psutil.cpu_percent()
2.5
>>> psutil.cpu_percent(1)
2.5
>>> 

2. 記憶體資訊

        記憶體資訊的獲取主要使用virtual_memory方法。swap使用就用swap_memory方法。

>>> mem = psutil.virtual_memory()
>>> mem
svmem(total=4018601984, available=1066205184, percent=73.5, used=3904004096, free=114597888, active=3302174720, inactive=426078208, buffers=156520448, cached=795086848)
>>> mem.total
4018601984
>>> mem.used
3904004096
>>> mem.free
114597888
>>> print(mem.total/1024/1024)
3832.4375
>>> 

        其中percent表示實際已經使用的記憶體佔比,即(1047543808-717537280)/1047543808*100% 。available表示還可以使用的記憶體。

3. 磁碟資訊

        磁碟資訊主要有兩部分,一個是磁碟的利用率,一個是io,他們分別可以通過 disk_usage 和 disk_io_counters 方法獲取。

        如下先獲取分割槽資訊,然後看下根分割槽的使用情況:

>>> psutil.disk_partitions()
[sdiskpart(device='/dev/mapper/root', mountpoint='/', fstype='ext4', opts='rw,errors=remount-ro'), sdiskpart(device='/dev/sda1', mountpoint='/boot', fstype='ext2', opts='rw')]
>>> psutil.disk_usage('/')
sdiskusage(total=42273669120, used=17241096192, free=22885195776, percent=40.8)
>>> 

        預設 disk_io_counters 方法獲取的是硬碟總的 io 數和讀寫資訊,如果需要獲取單個分割槽的io和讀寫資訊加上 "perdisk=True" 引數。

>>> psutil.disk_io_counters()
sdiskio(read_count=638190, write_count=77080153, read_bytes=16037795840, write_bytes=1628871606272, read_time=2307367, write_time=1777841305)
>>> psutil.disk_io_counters(perdisk=True)
{'vdb1': sdiskio(read_count=312, write_count=0, read_bytes=1238016, write_bytes=0, read_time=95, write_time=0), 'vda1': sdiskio(read_count=637878, write_count=77080257, read_bytes=16036557824, write_bytes=1628873314304, read_time=2307272, write_time=1777841879)}
>>> 

4. 網路資訊:

        網路io和磁碟 io 使用方法差不多,主要使用 net_io_counters 方法,如果需要獲取單個網絡卡的 io 資訊,加上 pernic=True 引數。

#獲取網路總的io情況
>>> 
>>> psutil.net_io_counters()
snetio(bytes_sent=525490132009, bytes_recv=409145642892, packets_sent=948527563, packets_recv=778182181, errin=0, errout=0, dropin=0, dropout=0)
#獲取網絡卡的io情況
>>> 
>>> psutil.net_io_counters(pernic=True)
{'lo': snetio(bytes_sent=56524704027, bytes_recv=56524704027, packets_sent=33602236, packets_recv=33602236, errin=0, errout=0, dropin=0, dropout=0), 'eth0': snetio(bytes_sent=468966480940, bytes_recv=352622081327, packets_sent=914930488, packets_recv=744583332, errin=0, errout=0, dropin=0, dropout=0)}
>>> 

5. 其他系統資訊:

        1. 獲取開機時間

##以linux時間格式返回,可以使用時間戳轉換
>>> psutil.boot_time()    
1496647567.0

#轉換成自然時間格式
>>> psutil.boot_time()
1496647567.0
>>> datetime.datetime.fromtimestamp(psutil.boot_time ()).strftime("%Y-%m-%d %H: %M: %S")
'2017-06-05 15: 26: 07'
>>> 

        2. 檢視系統全部程序

>>> psutil.pids()
[1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 46, 47, 48, 49, 50, 51, 52, 53, 60, 61, 63, 64, 65, 97, 98, 279, 280, 331, 398, 481, 676, 693, 769, 845, 848, 1023, 1085, 1108, 1355, 1366, 1457, 1474, 1475, 1494, 1541, 1543, 1545, 1546, 1548, 1550, 1552, 2829, 12436, 12913, 13129, 16022, 16029, 16030, 16031, 16032, 16033, 16518, 16520, 17088, 17124, 19203, 25382, 32679]

        3. 檢視單個程序

p = psutil.Process(16031)
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()

         檢視系統硬體指令碼:

#!/usr/bin/env python
#coding:utf-8

import psutil
import datetime
import time

# 當前時間
now_time = time.strftime('%Y-%m-%d-%H:%M:%S', time.localtime(time.time()))
print(now_time)

# 檢視cpu物理個數的資訊
print(u"物理CPU個數: %s" % psutil.cpu_count(logical=False))

#CPU的使用率
cpu = (str(psutil.cpu_percent(1))) + '%'
print(u"cup使用率: %s" % cpu)

#檢視記憶體資訊,剩餘記憶體.free  總共.total
#round()函式方法為返回浮點數x的四捨五入值。

free = str(round(psutil.virtual_memory().free / (1024.0 * 1024.0 * 1024.0), 2))
total = str(round(psutil.virtual_memory().total / (1024.0 * 1024.0 * 1024.0), 2))
memory = int(psutil.virtual_memory().total - psutil.virtual_memory().free) / float(psutil.virtual_memory().total)
print(u"實體記憶體: %s G" % total)
print(u"剩餘實體記憶體: %s G" % free)
print(u"實體記憶體使用率: %s %%" % int(memory * 100))
# 系統啟動時間
print(u"系統啟動時間: %s" % datetime.datetime.fromtimestamp(psutil.boot_time()).strftime("%Y-%m-%d %H:%M:%S"))

# 系統使用者
users_count = len(psutil.users())
#
# >>> for u in psutil.users():
# ...   print(u)
# ...
# suser(name='root', terminal='pts/0', host='61.135.18.162', started=1505483904.0)
# suser(name='root', terminal='pts/5', host='61.135.18.162', started=1505469056.0)
# >>> u.name
# 'root'
# >>> u.terminal
# 'pts/5'
# >>> u.host
# '61.135.18.162'
# >>> u.started
# 1505469056.0
# >>>

users_list = ",".join([u.name for u in psutil.users()])
print(u"當前有%s個使用者,分別是 %s" % (users_count, users_list))

#網絡卡,可以得到網絡卡屬性,連線數,當前流量等資訊
net = psutil.net_io_counters()
bytes_sent = '{0:.2f} Mb'.format(net.bytes_recv / 1024 / 1024)
bytes_rcvd = '{0:.2f} Mb'.format(net.bytes_sent / 1024 / 1024)
print(u"網絡卡接收流量 %s 網絡卡傳送流量 %s" % (bytes_rcvd, bytes_sent))

io = psutil.disk_partitions()
# print(io)
# print("io[-1]為",io[-1])
#del io[-1]

print('-----------------------------磁碟資訊---------------------------------------')

print("系統磁碟資訊:" + str(io))

for i in io:
    o = psutil.disk_usage(i.device)
    print("總容量:" + str(int(o.total / (1024.0 * 1024.0 * 1024.0))) + "G")
    print("已用容量:" + str(int(o.used / (1024.0 * 1024.0 * 1024.0))) + "G")
    print("可用容量:" + str(int(o.free / (1024.0 * 1024.0 * 1024.0))) + "G")

print('-----------------------------程序資訊-------------------------------------')
# 檢視系統全部程序
for pnum in psutil.pids():
    p = psutil.Process(pnum)
    print(u"程序名 %-20s  記憶體利用率 %-18s 程序狀態 %-10s 建立時間 %-10s " \
    % (p.name(), p.memory_percent(), p.status(), p.create_time()))
檢視系統硬體指令碼

        以上是psutil模組獲取linux系統基礎資訊的幾個方法,大概常用的資料就這些。當然其他用法還有很多,詳情可以參考他的官方文件。

部落格搬運地址:

  1. 官方文件
  2. python筆記之psutil模組
  3. Python中獲取系統基礎資訊psutil模組使用
  4. Linux系統檢視CPU使用率的幾個命令
  5. 使用psutil模組獲取電腦執行資訊
  6. python模組之psutil詳解