How can I monitor the thread count of a process on linux?

前端 未结 17 1128
暖寄归人
暖寄归人 2020-12-02 03:53

I would like to monitor the number of threads used by a specific process on Linux. Is there an easy way to get this information without impacting the performance of the proc

17条回答
  •  死守一世寂寞
    2020-12-02 04:37

    If you want the number of threads per user in a linux system then you should use:

    ps -eLf | grep  | awk '{ num += $6 } END { print num }'
    

    where as use the desired user name.

提交回复
热议问题