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 Changing ’defined’ or ’missing’ hard disk states to ’Available’ in IBM Smart Analytics System for AIX environment
Viewed 9865 times since Wed, May 22, 2019
AIX 6/7 Script to create a file with commands to remove missing and failed paths
Viewed 3913 times since Tue, Jun 14, 2022
AIX Creating EtherChannel Devices from Command Line
Viewed 3783 times since Mon, Jun 3, 2019
https://www.ibm.com/developerworks/learn/aix/index.html
Viewed 11389 times since Wed, May 30, 2018
System Admin Mirrorvg without locking the volume group
Viewed 3235 times since Mon, May 21, 2018
List of 10 Must Know Oracle Database Parameters for Database Administrator
Viewed 129977 times since Thu, Jun 21, 2018
AIX ODM for MPIO User Guide 09
Viewed 4107 times since Mon, Dec 31, 2018
AIX www web Links
Viewed 3451 times since Fri, Apr 19, 2019
AIX 6.1: Extend VG 0516-1714 extendvg 0516-1254 extendvg
Viewed 4630 times since Fri, Jul 6, 2018
AIX perf how to
Viewed 19144 times since Tue, Aug 14, 2018