How to deal with performance monitoring in AIX ?

To display top 10 highly utilized files under /var FSfind /var –xdev –ls|sort +6rn|head

 

To list the top ten users of paging space in IBM AIX:  svmon -Pgt 10

To list the top ten users of realmem in IBM AIX:   svmon -Put 10

To see the memory usage of that process:  svmon –p pid       

 

To display top 10 CPU-consuming processes: ps aux | head -1; ps aux | sort -rn +2 | head

 

To display top 10 memory-consuming processes: ps -ealf | head -1 ; ps -ealf | sort -rn +9 | head

 

To display processes in order of being penalized: ps -eakl | head -1 ; ps -eakl | sort -rn +5

 

To display processes in order of priority: ps -eakl | sort -n +6 | head

 

To display processes in order of time: ps vx | head -1 ; ps vx | grep -v PID | sort -rn +3 | head -10

 

To display processes in order of real memory use: ps vx | head -1 ; ps vx | grep -v PID | sort -rn +6 | head -10

 

To display processes in order of I/O: ps vx | head -1 ; ps vx | grep -v PID | sort -rn +4 | head -10

 

To determining the PID of wait processes: ps vg | head -1 ; ps vg | grep -w wait

0 (0)
Article Rating (No Votes)
Rate this article
Attachments
There are no attachments for this article.
Comments
There are no comments for this article. Be the first to post a comment.
Full Name
Email Address
Security Code Security Code
Related Articles RSS Feed
AIX: Script to get Total Disk Size
Viewed 2959 times since Tue, Jun 12, 2018
AIX - How to get Memory infomation
Viewed 7410 times since Fri, Jun 8, 2018
AIX: How to identify the program listening in the given port
Viewed 2040 times since Mon, Jun 11, 2018
How to disable SSH cipher/ MAC algorithms for Linux and Unix
Viewed 39248 times since Fri, Aug 21, 2020
AIX, System Admin↑ The chrctcp command
Viewed 2626 times since Fri, Apr 19, 2019
To do a quick check on the number of path present (does not mean all are Enabled] using for loop
Viewed 3351 times since Fri, Jun 8, 2018
Trick to Purge/Clean Swap Usage on AIX
Viewed 6536 times since Thu, Nov 29, 2018
AIX, Storage, System Admin↑ Identifying a Disk Bottleneck Using filemon
Viewed 9347 times since Fri, Apr 19, 2019
AIX Power replacing (hot-swap) failed disk in rootvg
Viewed 3239 times since Tue, Apr 16, 2019
Recovery from LED 552, 554, or 556 in AIX
Viewed 2209 times since Tue, Apr 16, 2019