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
RHEL: Building a custom kernel on RHEL 6
Viewed 5297 times since Sat, Jun 2, 2018
How to find the largest files and directories in Linux?
Viewed 4205 times since Sun, May 20, 2018
How To Use the Linux Auditing System on CentOS 7
Viewed 5164 times since Fri, Apr 5, 2019
Understanding logrotate utility part 1
Viewed 2575 times since Fri, Nov 30, 2018
10 Linux rsync Examples to Exclude Files/Directories
Viewed 12762 times since Wed, Oct 31, 2018
Turbocharge PuTTY with 12 Powerful Add-Ons – Software for Geeks #3
Viewed 16014 times since Sun, Sep 30, 2018
Red Hat ADDING SWAP SPACE
Viewed 2954 times since Fri, Jun 8, 2018
RHEL: Forgotten ’root’ password / using single-user to gain access
Viewed 9237 times since Sat, Jun 2, 2018
A tcpdump Tutorial and Primer with Examples
Viewed 7122 times since Sun, Jun 17, 2018
ubuntu How to Reset Forgotten Root Password in Ubuntu
Viewed 4010 times since Tue, Dec 8, 2020