Linux - How to monitor CPU usage

Linux - How to monitor CPU usage

 
In Linux, top can be used to monitor CPU usage of the system. Top is similar to topas in AIX though both are not the same.

Question : How to monitor CPU usage in Linux?
Answer : ps command can be used to report a snapshot of the current processes in Linux. Use option aux and sort based on the column to get the top usage based on the parameter you need. If you need to get CPU then you will need to sort column 3.
Example :
[root@server ~]# watch -n 2 'echo `ps aux |head -1`;ps aux |sort -nrk 3| head -10'
Note : Above command will output top 10 processes with highest %CPU in an interval of 2 seconds. Press "Crtl C" to stop.


Question : How to monitor CPU usage in Linux?
Answer : Besides using method above, top command can be used to monitor %CPU in Linux.
Example :
[root@server ~]# top


Question : How to monitor CPU usage in Linux?
Answer : sar command can be used to monitor %CPU in Linux. Use sar with option "u" and specific the interval and numintervals needed.
Example :
[root@server ~]# sar -u 3 3
Note : Above command with execute sar -u in an interval of 3 seconds for 3 times.
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
RHCS: Configure an active/backup pacemaker cluster
Viewed 9079 times since Sun, Jun 3, 2018
Using IOzone for Linux disk performance analysis
Viewed 8044 times since Wed, Jul 25, 2018
ZPOOL: Verify/change properties of a zpool
Viewed 2177 times since Sun, Jun 3, 2018
www.unixarena.com
Viewed 2520 times since Fri, Jul 27, 2018
How to disable SSH cipher/ MAC algorithms for Linux and Unix
Viewed 47188 times since Fri, Aug 21, 2020
How To Add Swap Space on Ubuntu 16.04
Viewed 2415 times since Fri, Jun 8, 2018
How to configure an SSH proxy server with Squid
Viewed 3216 times since Sun, Dec 6, 2020
RHEL: Extending the maximum inode count on a ext2/ext3/ext4 filesystem
Viewed 3357 times since Sun, May 27, 2018
RHEL: Enabling standard ftp/telnet
Viewed 3569 times since Sun, May 27, 2018
BIND for the Small LAN
Viewed 3499 times since Sun, May 20, 2018