How to determine how much memory a process is using in AIX

aixmemorynixprocess

How can I determine how much memory a process is using in AIX?

Best Answer

svmon is the most comprehensive tool for doing this on AIX.

svmon -P <pid>

will get you the full and glorious output. Obviously man svmon helps with interpreting that (just remember, by default, nearly all of the numbers are page counts, which are usually 4KB in size).

You can also get a very nice summary with memory shown in MB using,

svmon -P -O summary=basic,unit=MB

Related Topic