码迷,mamicode.com
首页 > 编程语言 > 详细

查看linux启动的线程信息

时间:2015-07-20 19:06:47      阅读:125      评论:0      收藏:0      [点我收藏+]

标签:

1、某一进程所有的线程个数、启动时间

ps max -o lstart,lwp,pid,nlwp,cmd

lstart:     STARTED time the command started.
nlwp:      NLWP number of lwps (threads) in the process. (alias thcount).
lwp:        LWP lwp (light weight process, or thread) ID of the lwp being reported.

 

2、Java进程信息查看

jstack <pid>|grep <desc>|cut -c<startindex>-<endindex>|sort |uniq -c

        例如:jstack 12041|grep job|cut -c0-43|sort |uniq -c

查看linux启动的线程信息

标签:

原文地址:http://www.cnblogs.com/olmlo/p/4661934.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!