Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I want to get the CPU and memory usage of a single process on Linux - I know the PID. Hopefully, I can get it every second and write it to a CSV using the 'watch' command. What command can I use to get this info from the Linux command-line?

share|improve this question
This looks like a duplicate of stackoverflow.com/questions/806830/… – Paul Biggar Aug 3 '09 at 10:25
2  
Belongs on SuperUser. – Richard Aug 3 '09 at 10:26

5 Answers

up vote 17 down vote accepted
ps -p <pid> -o %cpu,%mem,cmd

(You can leave off "cmd" but that might be helpful in debugging).

share|improve this answer
This isn't very accurate. It includes the memory used by shared libraries. – Paul Biggar Aug 3 '09 at 10:29
2  
The assumption would be that if you care about a single processes' memory usage enough to monitor it like this, it's using a significant amount of memory so that the extra couple-of-megabytes due to shared mappings isn't an issue. – caf Aug 3 '09 at 11:14
how to remove the header in the output of this command ? – Chaitanya Nov 28 '12 at 6:44
1  
@Chaitanya: pipe it through | tail -n +2 – caf Nov 28 '12 at 7:24
2  
Keep in mind that %cpu "is the CPU time used divided by the time the process has been running (cputime/realtime ratio), expressed as a percentage" (see manpage of ps). This is not the real just in time CPU usage. It can also be very different from what top shows, for instance. – xebeche Mar 27 at 17:23
show 1 more comment

A variant of caf's answer: top -p <pid>

This auto-refreshes the CPU usage so it's good for monitoring.

share|improve this answer

You could use top -b and grep out the pid you want (with the -b flag top runs in batch mode), or also use the -p flag and specify the pid without using grep.

share|improve this answer

To get the memory usage of just your application (as opposed to the shared libraries it uses, you need to use the Linux smaps interface). This answer explains it well.

share|improve this answer
ps aux | awk '{print $4"\t"$11}' | sort | uniq -c | awk '{print $2" "$1" "$3}' | sort -nr

or per process

ps aux | awk '{print $4"\t"$11}' | sort | uniq -c | awk '{print $2" "$1" "$3}' | sort -nr |grep mysql
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.