Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7011003
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 27, 20262026-05-27T22:04:19+00:00 2026-05-27T22:04:19+00:00

Is there an option for the Linux top command where I can filter processes

  • 0

Is there an option for the Linux top command where I can filter processes by name and write the CPU usage of that process every second to a log file?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-27T22:04:19+00:00Added an answer on May 27, 2026 at 10:04 pm

    top & pgrep

    To filter the output of top by process name, you can use pgrep to get a list of PIDs by process name then pass them to the -p option of top.

    For example:

    top -p $(pgrep -d',' http)
    

    Note: the -d',' option delimits the PIDs with commas, which is what is expected by the top -p.
    Note 2: top will return a failure message if there are no running processes that match the name you specify in pgrep.

    To write the results of top to a file, use the -n 1 option (only one iteration) and redirect the output to your log file.

    top -p $(pgrep -d',' http) -n 1 >> your_log_file
    

    To do that every second, perhaps a while loop with a sleep would do?

    while :; do top -p $(pgrep -d',' http) -n 1 >> your_log_file; sleep 1; done
    

    To timestamp each entry, you can append the output of date. E.g.

    while :; do top -p $(pgrep -d',' http) -n 1 >> log.txt; date >> log.txt; sleep 1; done
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

In some versions of UNIX and Linux there's a banner command (usually /usr/bin/banner) that
is there any option to sendmail linux command on particular time . I want
Is there an option for the curl command to show only a percentage output
is there an option how to disable that #if, #endif and other directives are
Is there an option to enable the drop down menu that appears when coding
Is there a (Linux) command to move all messages from one queue in Websphere
There is the IP_TRANSPARENT socket option on Linux. Is there a similar option for
Is there an API function on Linux (kernel 2.6.20) which can be used to
in linux to copy and paste a file we have cp command cp [OPTION]...
Using django comments framework http://docs.djangoproject.com/en/dev/ref/contrib/comments/ Not sure is there option, to make all comments

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.