sh 监视Linux中的线程数

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了sh 监视Linux中的线程数相关的知识,希望对你有一定的参考价值。

-- Monitor Number of threads per user

ps h -Led -o user | sort | uniq -c | sort -n

ps h -Led -o user | sort | uniq -c | sort -n | awk '{ print $2}'

-- Show Currently running threads of a particular user

ps -o nlwp,pid,lwp,args -u alfresco | sort -n



-- Show threads per user

#!/bin/bash

# lagay sa isang array
var=($(ps h -Led -o user | sort | uniq -c | sort -n | awk '{ print $2}'))

#iterate yong array
for i in ${var[@]}
do

ps -o nlwp,pid,lwp,args -u $i | sort -n

done

以上是关于sh 监视Linux中的线程数的主要内容,如果未能解决你的问题,请参考以下文章

如何监视tomcat5.23已经使用的线程数

sh 监视Linux上的TCP连接

Linux系统监控命令及如何定位到Java线程

sh watch是一个linux bash脚本,用于递归监视文件修改并在发生更改时执行bash命令

sh react是一个linux bash脚本,用于递归监视文件修改并在发生更改时执行bash命令

同步监视器之同步代码块同步方法