1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

孤独アドベントカレンダーに挑戦Advent Calendar 2019

Day 6

psコマンドでスレッドID, スレッド数を確認するコマンドメモ

Last updated at Posted at 2019-12-05

psコマンドでスレッドID, スレッド数を確認するコマンドメモ
スレッド毎のメモリ、CPUも確認したい。
JVMのスレッドダンプ取ったりする時に使った記憶。

コマンド

$ ps auxww -L
USER       PID   LWP %CPU NLWP %MEM    VSZ   RSS TTY      STAT START   TIME COMMAND
shodai     774   774 21.0    1  0.0  17380  1960 tty1     R    00:05   0:00 ps auxww -L

LWP

light weight process ID(軽量プロセスID) or スレッドID

NLWP

プロセス内のlwpの数。

1
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?