您好,登錄后才能下訂單哦!
本篇內(nèi)容介紹了“Python如何使用psutil獲取系統(tǒng)信息”的有關(guān)知識,在實(shí)際案例的操作過程中,不少人都會(huì)遇到這樣的困境,接下來就讓小編帶領(lǐng)大家學(xué)習(xí)一下如何處理這些情況吧!希望大家仔細(xì)閱讀,能夠?qū)W有所成!
用Python來編寫腳本簡化日常的運(yùn)維工作是Python的一個(gè)重要用途。在Linux下,有許多系統(tǒng)命令可以讓我們時(shí)刻監(jiān)控系統(tǒng)運(yùn)行的狀態(tài),如ps
,top
,free
等等。要獲取這些系統(tǒng)信息,Python可以通過subprocess
模塊調(diào)用并獲取結(jié)果。但這樣做顯得很麻煩,尤其是要寫很多解析代碼。
在Python中獲取系統(tǒng)信息的另一個(gè)好辦法是使用psutil
這個(gè)第三方模塊。顧名思義,psutil = process and system utilities,它不僅可以通過一兩行代碼實(shí)現(xiàn)系統(tǒng)監(jiān)控,還可以跨平臺使用,支持Linux/UNIX/OSX/Windows等,是系統(tǒng)管理員和運(yùn)維小伙伴不可或缺的必備模塊。
如果安裝了Anaconda,psutil就已經(jīng)可用了。否則,需要在命令行下通過pip安裝:
$ pip install psutil
如果遇到Permission denied安裝失敗,請加上sudo重試。
我們先來獲取CPU的信息:
>>> import psutil >>> psutil.cpu_count() # CPU邏輯數(shù)量 4 >>> psutil.cpu_count(logical=False) # CPU物理核心 2 # 2說明是雙核超線程, 4則是4核非超線程
統(tǒng)計(jì)CPU的用戶/系統(tǒng)/空閑時(shí)間:
>>> psutil.cpu_times() scputimes(user=10963.31, nice=0.0, system=5138.67, idle=356102.45)
再實(shí)現(xiàn)類似top
命令的CPU使用率,每秒刷新一次,累計(jì)10次:
>>> for x in range(10): ... print(psutil.cpu_percent(interval=1, percpu=True)) ... [14.0, 4.0, 4.0, 4.0] [12.0, 3.0, 4.0, 3.0] [8.0, 4.0, 3.0, 4.0] [12.0, 3.0, 3.0, 3.0] [18.8, 5.1, 5.9, 5.0] [10.9, 5.0, 4.0, 3.0] [12.0, 5.0, 4.0, 5.0] [15.0, 5.0, 4.0, 4.0] [19.0, 5.0, 5.0, 4.0] [9.0, 3.0, 2.0, 3.0]
使用psutil獲取物理內(nèi)存和交換內(nèi)存信息,分別使用:
>>> psutil.virtual_memory() svmem(total=8589934592, available=2866520064, percent=66.6, used=7201386496, free=216178688, active=3342192640, inactive=2650341376, wired=1208852480) >>> psutil.swap_memory() sswap(total=1073741824, used=150732800, free=923009024, percent=14.0, sin=10705981440, sout=40353792)
返回的是字節(jié)為單位的整數(shù),可以看到,總內(nèi)存大小是8589934592 = 8 GB,已用7201386496 = 6.7 GB,使用了66.6%。
而交換區(qū)大小是1073741824 = 1 GB。
可以通過psutil獲取磁盤分區(qū)、磁盤使用率和磁盤IO信息:
>>> psutil.disk_partitions() # 磁盤分區(qū)信息 [sdiskpart(device='/dev/disk1', mountpoint='/', fstype='hfs', opts='rw,local,rootfs,dovolfs,journaled,multilabel')] >>> psutil.disk_usage('/') # 磁盤使用情況 sdiskusage(total=998982549504, used=390880133120, free=607840272384, percent=39.1) >>> psutil.disk_io_counters() # 磁盤IO sdiskio(read_count=988513, write_count=274457, read_bytes=14856830464, write_bytes=17509420032, read_time=2228966, write_time=1618405)
可以看到,磁盤'/'
的總?cè)萘渴?98982549504 = 930 GB,使用了39.1%。文件格式是HFS,opts
中包含rw
表示可讀寫,journaled
表示支持日志。
psutil可以獲取網(wǎng)絡(luò)接口和網(wǎng)絡(luò)連接信息:
>>> psutil.net_io_counters() # 獲取網(wǎng)絡(luò)讀寫字節(jié)/包的個(gè)數(shù) snetio(bytes_sent=3885744870, bytes_recv=10357676702, packets_sent=10613069, packets_recv=10423357, errin=0, errout=0, dropin=0, dropout=0) >>> psutil.net_if_addrs() # 獲取網(wǎng)絡(luò)接口信息 { 'lo0': [snic(family=<AddressFamily.AF_INET: 2>, address='127.0.0.1', netmask='255.0.0.0'), ...], 'en1': [snic(family=<AddressFamily.AF_INET: 2>, address='10.0.1.80', netmask='255.255.255.0'), ...], 'en0': [...], 'en2': [...], 'bridge0': [...] } >>> psutil.net_if_stats() # 獲取網(wǎng)絡(luò)接口狀態(tài) { 'lo0': snicstats(isup=True, duplex=<NicDuplex.NIC_DUPLEX_UNKNOWN: 0>, speed=0, mtu=16384), 'en0': snicstats(isup=True, duplex=<NicDuplex.NIC_DUPLEX_UNKNOWN: 0>, speed=0, mtu=1500), 'en1': snicstats(...), 'en2': snicstats(...), 'bridge0': snicstats(...) }
要獲取當(dāng)前網(wǎng)絡(luò)連接信息,使用net_connections()
:
>>> psutil.net_connections() Traceback (most recent call last): ... PermissionError: [Errno 1] Operation not permitted During handling of the above exception, another exception occurred: Traceback (most recent call last): ... psutil.AccessDenied: psutil.AccessDenied (pid=3847)
你可能會(huì)得到一個(gè)AccessDenied
錯(cuò)誤,原因是psutil獲取信息也是要走系統(tǒng)接口,而獲取網(wǎng)絡(luò)連接信息需要root權(quán)限,這種情況下,可以退出Python交互環(huán)境,用sudo
重新啟動(dòng):
$ sudo python3 Password: ****** Python 3.8 ... on darwin Type "help", ... for more information. >>> import psutil >>> psutil.net_connections() [ sconn(fd=83, family=<AddressFamily.AF_INET6: 30>, type=1, laddr=addr(ip='::127.0.0.1', port=62911), raddr=addr(ip='::127.0.0.1', port=3306), status='ESTABLISHED', pid=3725), sconn(fd=84, family=<AddressFamily.AF_INET6: 30>, type=1, laddr=addr(ip='::127.0.0.1', port=62905), raddr=addr(ip='::127.0.0.1', port=3306), status='ESTABLISHED', pid=3725), sconn(fd=93, family=<AddressFamily.AF_INET6: 30>, type=1, laddr=addr(ip='::', port=8080), raddr=(), status='LISTEN', pid=3725), sconn(fd=103, family=<AddressFamily.AF_INET6: 30>, type=1, laddr=addr(ip='::127.0.0.1', port=62918), raddr=addr(ip='::127.0.0.1', port=3306), status='ESTABLISHED', pid=3725), sconn(fd=105, family=<AddressFamily.AF_INET6: 30>, type=1, ..., pid=3725), sconn(fd=106, family=<AddressFamily.AF_INET6: 30>, type=1, ..., pid=3725), sconn(fd=107, family=<AddressFamily.AF_INET6: 30>, type=1, ..., pid=3725), ... sconn(fd=27, family=<AddressFamily.AF_INET: 2>, type=2, ..., pid=1) ]
通過psutil可以獲取到所有進(jìn)程的詳細(xì)信息:
>>> psutil.pids() # 所有進(jìn)程ID [3865, 3864, 3863, 3856, 3855, 3853, 3776, ..., 45, 44, 1, 0] >>> p = psutil.Process(3776) # 獲取指定進(jìn)程ID=3776,其實(shí)就是當(dāng)前Python交互環(huán)境 >>> p.name() # 進(jìn)程名稱 'python3.6' >>> p.exe() # 進(jìn)程exe路徑 '/Users/michael/anaconda3/bin/python3.6' >>> p.cwd() # 進(jìn)程工作目錄 '/Users/michael' >>> p.cmdline() # 進(jìn)程啟動(dòng)的命令行 ['python3'] >>> p.ppid() # 父進(jìn)程ID 3765 >>> p.parent() # 父進(jìn)程 <psutil.Process(pid=3765, name='bash') at 4503144040> >>> p.children() # 子進(jìn)程列表 [] >>> p.status() # 進(jìn)程狀態(tài) 'running' >>> p.username() # 進(jìn)程用戶名 'michael' >>> p.create_time() # 進(jìn)程創(chuàng)建時(shí)間 1511052731.120333 >>> p.terminal() # 進(jìn)程終端 '/dev/ttys002' >>> p.cpu_times() # 進(jìn)程使用的CPU時(shí)間 pcputimes(user=0.081150144, system=0.053269812, children_user=0.0, children_system=0.0) >>> p.memory_info() # 進(jìn)程使用的內(nèi)存 pmem(rss=8310784, vms=2481725440, pfaults=3207, pageins=18) >>> p.open_files() # 進(jìn)程打開的文件 [] >>> p.connections() # 進(jìn)程相關(guān)網(wǎng)絡(luò)連接 [] >>> p.num_threads() # 進(jìn)程的線程數(shù)量 1 >>> p.threads() # 所有線程信息 [pthread(id=1, user_time=0.090318, system_time=0.062736)] >>> p.environ() # 進(jìn)程環(huán)境變量 {'SHELL': '/bin/bash', 'PATH': '/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:...', 'PWD': '/Users/michael', 'LANG': 'zh_CN.UTF-8', ...} >>> p.terminate() # 結(jié)束進(jìn)程 Terminated: 15 <-- 自己把自己結(jié)束了
和獲取網(wǎng)絡(luò)連接類似,獲取一個(gè)root用戶的進(jìn)程需要root權(quán)限,啟動(dòng)Python交互環(huán)境或者.py
文件時(shí),需要sudo
權(quán)限。
psutil還提供了一個(gè)test()
函數(shù),可以模擬出ps
命令的效果:
$ sudo python3 Password: ****** Python 3.6.3 ... on darwin Type "help", ... for more information. >>> import psutil >>> psutil.test() USER PID %MEM VSZ RSS TTY START TIME COMMAND root 0 24.0 74270628 2016380 ? Nov18 40:51 kernel_task root 1 0.1 2494140 9484 ? Nov18 01:39 launchd root 44 0.4 2519872 36404 ? Nov18 02:02 UserEventAgent root 45 ? 2474032 1516 ? Nov18 00:14 syslogd root 47 0.1 2504768 8912 ? Nov18 00:03 kextd root 48 0.1 2505544 4720 ? Nov18 00:19 fseventsd _appleeven 52 0.1 2499748 5024 ? Nov18 00:00 appleeventsd root 53 0.1 2500592 6132 ? Nov18 00:02 configd ...
“Python如何使用psutil獲取系統(tǒng)信息”的內(nèi)容就介紹到這里了,感謝大家的閱讀。如果想了解更多行業(yè)相關(guān)的知識可以關(guān)注億速云網(wǎng)站,小編將為大家輸出更多高質(zhì)量的實(shí)用文章!
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。