How can I determine how much memory a process is using in AIX?
|
Have you tried topas? It's pretty good for that sort of thing. You can also try nmon but it's third party, so you'll have to download and compile it. |
|||
|
|
|
You can see memory usage with:
where PID is the process ID you are checking. You can find info about the variables displayed here: http://publib.boulder.ibm.com/infocenter/pseries/v5r3/index.jsp?topic=/com.ibm.aix.prftungd/doc/prftungd/mem_usage_determine_ps.htm You will be more interested in SIZE (Virtual size in paging space in kilobytes of the data section of the process) and RSS (Real-memory size in kilobytes of the process) |
|||
|
|
|
Have you tried:
where PID is the process ID that you're interested in? |
|||||
|
|
|
will get you the full and glorious output. Obviously You can also get a very nice summary with memory shown in MB using,
|
|||
|
|