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?
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.
|
(You can leave off "cmd" but that might be helpful in debugging). |
|||||||||||||||||
|
|
A variant of caf's answer:
This auto-refreshes the CPU usage so it's good for monitoring. |
|||
|
|
|
You could use |
||||
|
|
|
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. |
|||
|
|
or per process
|
|||
|
|