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: Enabling standard ftp/telnet
Viewed 3658 times since Sun, May 27, 2018
FIO (Flexible I/O) – a benchmark tool for any operating system
Viewed 19677 times since Wed, Jul 25, 2018
RHEL7: How to get started with Firewalld.
Viewed 12294 times since Wed, May 22, 2019
Terminal based "The Matrix" like implementation
Viewed 2449 times since Thu, Apr 18, 2019
A Simple Guide to Oracle Cluster File System (OCFS2) using iSCSI on Oracle Cloud Infrastructure
Viewed 8674 times since Sat, Jun 2, 2018
RHEL: Create a local RPM repository
Viewed 11420 times since Sun, May 27, 2018
RHEL: Multipathing basics
Viewed 9501 times since Sat, Jun 2, 2018
Linux - Cannot login from remote console but can access via ssh
Viewed 5419 times since Fri, Jun 8, 2018
How To Use Systemctl to Manage Systemd Services and Units
Viewed 7704 times since Mon, Dec 7, 2020
ZFS: Remove an existing zfs filesystem
Viewed 2268 times since Sun, Jun 3, 2018