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, Networking↑ Adding and deleting a static network route using the command line
Viewed 2864 times since Fri, Apr 19, 2019
IBM AIX MPIO: Best practices and considerations
Viewed 11793 times since Wed, May 30, 2018
How to build a NIM Server on AIX 6.1 from the Scratch :: Part 1
Viewed 5178 times since Thu, Nov 29, 2018
How to Backup and Upgrade a Virtual I/O Server Part I
Viewed 4760 times since Wed, Jun 5, 2019
How to setup an user in AIX
Viewed 4028 times since Mon, May 28, 2018
AIX - How to monitor memory usage
Viewed 5742 times since Fri, Jun 8, 2018
Installation of the Virtual I/O Server directly from the HMC
Viewed 21339 times since Tue, Jun 4, 2019
AIX snap - Prevent dump collection
Viewed 12382 times since Mon, Sep 17, 2018
How to determine why your AIX oslevel is downlevel (and a script to help!)
Viewed 4461 times since Fri, Jul 13, 2018
AIX oslevel version OS
Viewed 5096 times since Wed, Apr 17, 2019