Hi,
How do you measure the memory usage of an application or process in Linux? I've read here that "ps" is not an accurate tool to use for this intent.
Thanks, Kenneth
|
7
|
|
|
|
|
|
With ps or similiar tools you will only get the amount of memory pages allocated by that process. This number is correct, but: a) does not reflect the actual amount of memory used by the application, only the amount of memory reserved for it b) can be misleading if pages are shared, for example by several threads or by using dynamically linked libraries If you really want to know what amount of memory your application actually uses, you need to run it within a profiler. For example, valgrind can give you insights about the amount of memory used, and, more importantly, about possible memory leaks in your program. |
||||
|
|
|
This is an excellent summary of the tools and problems: http://ktown.kde.org/~seli/memory/analysis.html I'll quote it, so that more devs will actually read it.
|
||
|
|
|
|
If you want something quicker than profiling with Valgrind and your kernel is older and you can't use smaps, a ps with the options to show the resident set of the process (with "ps -o rss,command") can give you a quick and reasonable aproximation of the real amount of non-swapped memory being used. |
||
|
|
|
|
In recent versions of linux, use the smaps subsystem. For example, for a process with a PID of 1234:
It will tell you exactly how much memory it is using at that time. More importantly, it will divide the memory into private and shared, so you can tell how much memory your instance of the program is using, without including memory shared between multiple instances of the program. |
||
|
|
|
|
Valgrind is amazing if you have the time to run it. valgrind --tool=massif is The Right Solution. However, I'm starting to run larger examples, and using valgrind is no longer practical. Is there a way to tell the maximum memory usage (modulo page size and shared pages) of a program? On a real unix system, /usr/bin/time -v works. On linux, however, this does /not/ work. |
||
|
|
|
|
There isn't a single answer for this because you can't pin point precisely the amount of memory a process uses. Most processes under linux use shared libraries. For instance, let's say you want to calculate memory usage for the 'ls' process. Do you count only the memory used by the executable 'ls' ( if you could isolate it) ? How about libc? Or all these other libs that are required to run 'ls'?
You could argue that they are shared by other processes, but 'ls' can't be run on the system without them being loaded. Also, if you need to know how much memory a process needs in order to do capacity planning, you have to calculate how much each additional copy of the process uses. I think /proc/PID/status might give you enough info of the memory usage AT a single time. On the other hand, valgrind will give you a better profile of the memory usage throughout the lifetime of the program |
||
|
|
|
|
Another vote for Valgrind here, but I would like to add that you can use a tool like Alleyoop to help you interpret the results generated by valgrind. I use the two tools all the time and always have lean, non-leaky code to proudly show for it ;) |
||
|
|
|
|
I use top to monitor the program, but will try valgrind to confirm it's usefulness |
||
|
|
|
|
There is no easy way to calculate this. But some people have tried to get some good answers: ps_mem.py |
||
|
|
|
|
Another vote for valgrind ("VAL-grinned")! Fantastic tool, IMHO. |
||
|
|
|
|
Get valgrind. give it your program to run, and it'll tell you plenty about its memory usage. This would apply only for the case of a program that runs for some time and stops. I don't know if valgrind can get its hands on an already-running process or shouldn't-stop processes such as daemons. |
||
|
|
|
|
Hard to tell for sure, but here are two "close" things that can help. $ ps aux will give you Virtual Size (VSZ) You can also get detailed stats from /proc filesystem by going to /proc/$pid/status The most important is the VmSize, which should be close to what "ps aux" gives. /proc/19420$ cat status Name: firefox State: S (sleeping) Tgid: 19420 Pid: 19420 PPid: 1 TracerPid: 0 Uid: 1000 1000 1000 1000 Gid: 1000 1000 1000 1000 FDSize: 256 Groups: 4 6 20 24 25 29 30 44 46 107 109 115 124 1000 VmPeak: 222956 kB VmSize: 212520 kB VmLck: 0 kB VmHWM: 127912 kB VmRSS: 118768 kB VmData: 170180 kB VmStk: 228 kB VmExe: 28 kB VmLib: 35424 kB VmPTE: 184 kB Threads: 8 SigQ: 0/16382 SigPnd: 0000000000000000 ShdPnd: 0000000000000000 SigBlk: 0000000000000000 SigIgn: 0000000020001000 SigCgt: 000000018000442f CapInh: 0000000000000000 CapPrm: 0000000000000000 CapEff: 0000000000000000 Cpus_allowed: 03 Mems_allowed: 1 voluntary_ctxt_switches: 63422 nonvoluntary_ctxt_switches: 7171 |
|||
|
|