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
Procedura powiekszania OCFS2 online
Viewed 5326 times since Fri, Jun 8, 2018
Linux - How to get network speed and statistic of ethernet adapter in Linux
Viewed 2014 times since Fri, Jun 8, 2018
How To Find Largest Top 10 Files and Directories On Linux / UNIX / BSD find
Viewed 3694 times since Mon, Oct 29, 2018
Understanding logrotate utility part 1
Viewed 1621 times since Fri, Nov 30, 2018
RHEL: Display swap/RAM size
Viewed 3137 times since Sat, Jun 2, 2018
RHEL: Forgotten ’root’ password / using single-user to gain access
Viewed 7176 times since Sat, Jun 2, 2018
RHEL: What is "SysRq key" and how to use it
Viewed 5115 times since Sat, Jun 2, 2018
RHCS6: Debug and test multicast traffic between two hosts
Viewed 6461 times since Sun, Jun 3, 2018
List usernames instead of uids with the ps command for long usernames
Viewed 2222 times since Wed, Jul 25, 2018
Jak znaleźć najszybszy publiczny serwer DNS w Polsce?
Viewed 2466 times since Mon, May 21, 2018