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
Topics: PowerHA / HACMP, Storage Adding a new volume group to an active PowerHA resource group
Viewed 2829 times since Mon, Jun 3, 2019
Backing up your VIOS configuration with viosbr.
Viewed 11971 times since Mon, May 28, 2018
How to clear/clean/erase/delete/reset network adapter configuration on AIX?
Viewed 12780 times since Thu, Nov 29, 2018
AIX, Storage, System Admin Allocating shared storage to VIOS clients
Viewed 2499 times since Fri, Apr 19, 2019
AIX Full memory dump configure
Viewed 3553 times since Mon, Jul 16, 2018
AIX, System Admin↑ The chrctcp command
Viewed 3237 times since Fri, Apr 19, 2019
IBM AIX MPIO: Best practices and considerations
Viewed 11986 times since Wed, May 30, 2018
Recovery AIX system when hang on boot (554 code error).
Viewed 16811 times since Thu, Feb 21, 2019
AIX HOW TO CLONE A ROOTVG USING ALTERNATE DISK INSTALLATION ALTER_DISK_COPY
Viewed 17621 times since Sun, Jun 30, 2019
AIX smtctl The smtctl command controls the enabling and disabling of processor simultaneous multithreading mode.
Viewed 15424 times since Fri, Jan 18, 2019