4

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

C. Ross
  • 2,995
  • 8
  • 32
  • 36

4 Answers4

4

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

EightBitTony
  • 9,211
  • 1
  • 32
  • 46
  • +1 for "just remember, by default, nearly all of the numbers are page counts, which are usually 4KB in size" – ivicaa Mar 29 '18 at 09:35
  • include the options filtertype=working,segment=off and you will see the real memory usage. – n00b Nov 30 '18 at 13:45
2

You can see memory usage with:

ps v PID

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)

1

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.

Satanicpuppy
  • 5,917
  • 1
  • 16
  • 18
0

Have you tried:

ps -p PID -o command,size

where PID is the process ID that you're interested in?

Dennis Williamson
  • 60,515
  • 14
  • 113
  • 148