linux 實時檢視一個 python 程式有幾個執行緒

ponponon發表於2023-02-07

很簡單,首先使用 ps 命令獲取程式的 pid

然後使用 top 命令監控

top -p {pid}, 然後進去後,按 shift+h,就能看到了


實戰

先用 ps 命令獲取對應程式的 pid

╰─➤  ps jfax | grep glance
2805339 2811314 2811314 2805339 pts/4    2811314 Sl+   1001   0:55      |   |   \_ /usr/bin/python3 /home/pon/.local/bin/glances
2811492 2813858 2813857 2811492 pts/0    2813857 S+    1001   0:00      |       \_ grep --color=auto --exclude-dir=.bzr --exclude-dir=CVS --exclude-dir=.git --exclude-dir=.hg --exclude-dir=.svn --exclude-dir=.idea --exclude-dir=.tox glance

該 top 命令表演了

─➤  top -p 2811314

進來只能看到一個 item

圖片.png

這個時候,按下 shift+h 就能看到所有執行緒了

圖片.png

相關文章