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
Using Shell Redirection: All About the Here-Doc
Viewed 11420 times since Wed, May 30, 2018
Script to reset NIM state and deallocate resources
Viewed 3235 times since Thu, Feb 21, 2019
Install and configure yum on AIX
Viewed 5632 times since Thu, Feb 21, 2019
AIX, Networking Etherchannel failover testing
Viewed 3915 times since Fri, Apr 19, 2019
AIX - How to get network speed and statistic of ethernet adapter in AIX
Viewed 16676 times since Fri, Jun 8, 2018
Technology level update on AIX using smit_update and alt_disk_install method
Viewed 7047 times since Sun, Jun 30, 2019
Managing System Dump Devices sysdumpdev
Viewed 4925 times since Mon, Jul 9, 2018
Working with Virtual media library on VIO servers
Viewed 18077 times since Thu, Feb 21, 2019
Tips I Picked up at the Power Systems Technical University
Viewed 4240 times since Mon, Jun 11, 2018
AIX, Security, System Admin↑ Fix user accounts
Viewed 5599 times since Fri, Apr 19, 2019