linux - [Solved-6 Solutions] How to measure actual memory usage of an application or process ? - ubuntu - red hat - debian - linux server - linux pc
Linux - Problem :
How to measure actual memory usage of an application or process ?
Linux - Solution 1 :
With ps or similar tools you will only get the amount of memory pages allocated by that process. This number is correct, but:
- Does not reflect the actual amount of memory used by the application, only the amount of memory reserved for it
- 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.
- The heap profiler tool of valgrind is called 'massif':
- Massif is a heap profiler. It performs detailed heap profiling by taking regular snapshots of a program's heap.
- It produces a graph showing heap usage over time, including information about which parts of the program are responsible for the most memory allocations.
- The graph is supplemented by a text or HTML file that includes more information for determining where the most memory is being allocated. Massif runs programs about 20x slower than normal.
As explained in the valgrind documentation, you need to run the program through valgrind:
Linux - Solution 2 :
Try the pmap command:
Linux - Solution 3:
It will give you Virtual Size (VSZ)
You can also get detailed stats from /proc file-system by going to /proc/$pid/status
The most important is the VmSize, which should be close to what ps aux gives.
Linux - Solution 4:
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.
Linux - Solution 5:
Use smem, which is an alternative to ps which calculates the USS and PSS per process. What you want is probably the PSS.
- USS - Unique Set Size. This is the amount of unshared memory unique to that process (think of it as U for unique memory). It does not include shared memory. Thus this will under-report the amount of memory a process uses, but is helpful when you want to ignore shared memory.
- PSS - Proportional Set Size. This is what you want. It adds together the unique memory (USS), along with a proportion of its shared memory divided by the number of other processes sharing that memory. Thus it will give you an accurate representation of how much actual physical memory is being used per process - with shared memory truly represented as shared. Think of the P being for physical memory.
How this compares to RSS as reported by ps and other utilties:
- RSS - Resident Set Size. This is the amount of shared memory plus unshared memory used by each process. If any processes share memory, this will over-report the amount of memory actually used, because the same shared memory will be counted more than once - appearing again in each other process that shares the same memory. Thus it is fairly unreliable, especially when high-memory processes have a lot of forks - which is common in a server, with things like Apache or PHP(fastcgi/FPM) processes.