How do I monitor or view the thread count of a certain process on AIX?
Asked
Active
Viewed 2.4k times
2 Answers
5
ps -o thcount -p <process id>
That would give you only the thread count.
Play with other field specifiers for the "-o" option (see 'man ps') for other info. For instance
ps -o pid,comm,user,thcount -p <process id>
Snark
- 33,097