View the number of threads of a process in CentOS

Source: Internet
Author: User

Sometimes it is necessary to determine the number of threads currently running in the process, so the following methods are worth using.

1. query by process Number:

# Pstree-p process number

# Top-Hp Process number

2. query by process name:

# Pstree-p 'ps-e | grep server | awk '{print $1 }''

# Pstree-p 'ps-e | grep server | awk '{print $1} ''| wc-l

Pipeline and command replacement are used here,

I only learned about command replacement today. That is to say, commands enclosed by ''are executed first, and their output is used as parameters of other commands,

The output (process number) of ps-e | grep server | awk '{print $1}' is used as the pstree-p parameter.

Pipeline and command replacement are different:

Pipeline: Pipeline symbol "|" the output of the left command serves as the input of the right command

Command replacement: Use the command output in the Command replacement character "'' "as a parameter for the corresponding positions of other commands.

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.