How to check system load in Linux

Aug 02, 2019 pm 05:27 PM
linux

How to check system load in Linux

The load status of the operating system reflects the resource usage of the application, from which the bottlenecks of application optimization can be found.

System load average refers to the average number of processes that are running or uninterruptible. \

is running, which means running state, occupying the CPU, or ready state, waiting for CPU scheduling. \

Do not disturb, indicating blocking, waiting for I/O

Recommendation: [linux video tutorial]

In the Linux system, you need to view Generally, the uptime command is used for load conditions (w command and top command are also acceptable)*

1. uptime command

$ uptime\
16:33:56 up 69 days,  5:10,  1 user,  load average: 0.14, 0.24, 0.29
Copy after login

The above information is analyzed as follows:

16:33:56 : Current time

up 69 days, 5:10 : The system has been running for 69 days, 5 hours and 10 minutes

1 user : There is currently 1 user logged into the system load average: 0.14, 0.24, 0.29: The average load of the system in the past 1 minute, 5 minutes, and 15 minutes

load average: 0.14, 0.24, 0.29: The average load of the system in the past 1 minute, 5 minutes, and 15 minutes Load

Average load analysis

View the number of logical CPU cores:

$ grep 'model name' /proc/cpuinfo | wc -l\
1\
Copy after login

The running results indicate that there is 1 logical CPU core. Taking 1 CPU core as an example, assuming that the CPU processes up to 100 processes per minute –

load=0, no process requires CPU

load=0.5, and the CPU processes 50 processes

load=1, the CPU has processed 100 processes, and the CPU is fully occupied at this time, but the system can still operate smoothly

load=1.5, the CPU has processed 100 processes, and there are still 50 A process is being eliminated and waiting for CPU processing. At this time, the CPU is already overloaded.

In order for the system to run smoothly, the load value should not exceed 1.0, so that no process needs to wait, and all processes can be processed for the first time. be processed in no time. \

Obviously, 1.0 is a key value. If it exceeds this value, the system will not be in optimal condition. Generally 0.7 is an ideal value. \

In addition, the health status of the load value is also related to the number of CPU cores in the system. If the number of CPU cores is 2, then the health value of the load value should be 2, and so on. \

The load of the evaluation system generally uses the average load value within 15 minutes.

2. w command

$ w\
 17:47:40 up 69 days,  6:24,  1 user,  load average: 0.46, 0.26, 0.25\
USER     TTY      FROM              LOGIN@   IDLE   JCPU   PCPU WHAT\
lvinkim  pts/0    14.18.144.2      15:55    0.00s  0.02s  0.00s w
Copy after login

Line 1: Same as uptime one. \

Below line 2, the list of currently logged in users.

3. top command

$ top\
top - 17:51:23 up 69 days,  6:28,  1 user,  load average: 0.31, 0.30, 0.26\
Tasks:  99 total,   1 running,  98 sleeping,   0 stopped,   0 zombie\
Cpu(s):  2.3%us,  0.2%sy,  0.0%ni, 97.4%id,  0.0%wa,  0.0%hi,  0.0%si,  0.0%st\
Mem:   1922244k total,  1737480k used,   184764k free,   208576k buffers\
Swap:        0k total,        0k used,        0k free,   466732k cached\
\
  PID USER      PR  NI  VIRT  RES  SHR S %CPU %MEM    TIME+  COMMAND                                                                \
    1 root      20   0 19232 1004  708 S  0.0  0.1   0:01.17 init                                                                    \
    2 root      20   0     0    0    0 S  0.0  0.0   0:00.01 kthreadd                                                                \
...
Copy after login

Line 1: Same as uptime one.

Line 2: Process number information.

Tasks: 99 total: There are 99 processes in total

1 running: 1 process is occupying the CPU

98 sleeping: 98 sleeping processes

0 stopped: 0 stopped processes

0 zombie: 0 zombie processes

Line 3: CPU usage

us (user): occupied by non-nice user processes CPU ratio

sy (system): The ratio of the kernel and kernel processes occupying the CPU

ni (nice): The ratio of the CPU occupied by processes that have changed priorities in the user process space

id (idle): CPU idle ratio. If the system is slow and this value is high, it means that the reason for the slow system is not high CPU load.

wa (iowait): The time ratio of the CPU waiting to perform I/O operations. , this indicator can be used to troubleshoot disk I/O problems, usually combined with wa and id to determine

hi (Hardware IRQ): The ratio of the time spent by the CPU processing hardware interrupts

si (Software Interrupts): The ratio of time spent by the CPU processing software interrupts

st (steal): The elapsed time, the ratio of CPU time occupied by other tasks in the virtual machine

Some situations that need attention :

User process us has a high proportion and I/O operation wa is low: It means that the reason for the slowness of the system is that the process takes up a lot of CPU. It is usually accompanied by a low idle ratio id, which means that the CPU has very little idling time. .

I/O operation wa is low and idle ratio id is high: the possibility of CPU resource bottleneck can be eliminated.

I/O operation wa high: It means that I/O takes up a lot of CPU time. You need to check the use of swap space. The swap space is located on the disk and the performance is much lower than that of the memory. When the memory is exhausted, start using swap. When using space, it will have a serious impact on performance, so for servers with higher performance requirements, it is generally recommended to turn off the swap space. On the other hand, if there is plenty of memory but wa is high, you need to check which process is taking up a lot of I/O resources.

More load situations can be flexibly judged in practice.

4. iostat command

The iostat command can check the IO usage of the system partition

$ iostat \
Linux 2.6.32-573.22.1.el6.x86_64 (sgs02)   01/20/2017     _x86_64_   (1 CPU)\
\
avg-cpu:  %user   %nice %system %iowait  %steal   %idle\
           2.29    0.00    0.25    0.04    0.00   97.41\
\
Device:            tps   Blk_read/s   Blk_wrtn/s   Blk_read   Blk_wrtn\
vda               1.15         3.48        21.88   21016084  131997520
Copy after login

Some noteworthy IO indicators:

Device: disk name

tps: I/O transfer requests per second

Blk_read/s: How many blocks are read per second. To view the block size, please refer to the command tune2fs

Blk_wrtn/s: How many blocks are written per second

Blk_read: How many blocks are read in total

–Blk_wrtn: How many blocks are written in total

5. iotop command

iotop The command is similar to the top command, but it displays the I/O status of each process, which is useful for locating processes with heavy I/O operations. \

# iotop\
Total DISK READ: 0.00 B/s | Total DISK WRITE: 774.52 K/s\
  TID  PRIO  USER     DISK READ  DISK WRITE  SWAPIN     IO>    COMMAND                                                                \
  272 be/3 root        0.00 B/s    0.00 B/s  0.00 %  4.86 % [jbd2/vda1-8]\
 9072 be/4 mysql       0.00 B/s  268.71 K/s  0.00 %  0.00 % mysqld\
 5058 be/4 lvinkim     0.00 B/s    3.95 K/s  0.00 %  0.00 % php-fpm: pool www\
    1 be/4 root        0.00 B/s    0.00 B/s  0.00 %  0.00 % init
Copy after login

You can see the reading and writing intensity of different tasks.

6. sysstat tool

很多时候当检测到或者知道历史的高负载状况时,可能需要回放历史监控数据,这时 sar 命令就派上用场了,sar 命令同样来自 sysstat 工具包,可以记录系统的 CPU 负载、I/O 状况和内存使用记录,便于历史数据的回放。

sysstat 的配置文件在 /etc/sysconfig/sysstat 文件,历史日志的存放位置为 /var/log/sa\

统计信息都是每 10 分钟记录一次,每天的 23:59 会分割统计文件,这些操作的频率都在 /etc/cron.d/sysstat 文件配置。\

七、sar 命令

使用 sar 命令查看当天 CPU 使用:

$ sar\
Linux 2.6.32-431.23.3.el6.x86_64 (szs01)   01/20/2017     _x86_64_   (1 CPU)\
\
10:50:01 AM     CPU     %user     %nice   %system   %iowait    %steal     %idle\
11:00:01 AM     all      0.45      0.00      0.22      0.40      0.00     98.93\
Average:        all      0.45      0.00      0.22      0.40      0.00     98.93
Copy after login

使用 sar 命令查看当天内存使用:

$ sar -r\
Linux 2.6.32-431.23.3.el6.x86_64 (szs01)   01/20/2017     _x86_64_   (1 CPU)\
\
10:50:01 AM kbmemfree kbmemused  %memused kbbuffers  kbcached  kbcommit   %commit\
11:00:01 AM     41292    459180     91.75     44072    164620    822392    164.32\
Average:        41292    459180     91.75     44072    164620    822392    164.32
Copy after login

使用 sar 命令查看当天 IO 统计记录:

$ sar -b\
Linux 2.6.32-431.23.3.el6.x86_64 (szs01)   01/20/2017     _x86_64_   (1 CPU)\
\
10:50:01 AM       tps      rtps      wtps   bread/s   bwrtn/s\
11:00:01 AM      3.31      2.14      1.17     37.18     16.84\
Average:         3.31      2.14      1.17     37.18     16.84
Copy after login

更多 sar 用法,请 man sar 。

The above is the detailed content of How to check system load in Linux. For more information, please follow other related articles on the PHP Chinese website!

Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
3 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Best Graphic Settings
3 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. How to Fix Audio if You Can't Hear Anyone
3 weeks ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

deepseek web version entrance deepseek official website entrance deepseek web version entrance deepseek official website entrance Feb 19, 2025 pm 04:54 PM

DeepSeek is a powerful intelligent search and analysis tool that provides two access methods: web version and official website. The web version is convenient and efficient, and can be used without installation; the official website provides comprehensive product information, download resources and support services. Whether individuals or corporate users, they can easily obtain and analyze massive data through DeepSeek to improve work efficiency, assist decision-making and promote innovation.

How to install deepseek How to install deepseek Feb 19, 2025 pm 05:48 PM

There are many ways to install DeepSeek, including: compile from source (for experienced developers) using precompiled packages (for Windows users) using Docker containers (for most convenient, no need to worry about compatibility) No matter which method you choose, Please read the official documents carefully and prepare them fully to avoid unnecessary trouble.

How to solve the permissions problem encountered when viewing Python version in Linux terminal? How to solve the permissions problem encountered when viewing Python version in Linux terminal? Apr 01, 2025 pm 05:09 PM

Solution to permission issues when viewing Python version in Linux terminal When you try to view Python version in Linux terminal, enter python...

BITGet official website installation (2025 beginner's guide) BITGet official website installation (2025 beginner's guide) Feb 21, 2025 pm 08:42 PM

BITGet is a cryptocurrency exchange that provides a variety of trading services including spot trading, contract trading and derivatives. Founded in 2018, the exchange is headquartered in Singapore and is committed to providing users with a safe and reliable trading platform. BITGet offers a variety of trading pairs, including BTC/USDT, ETH/USDT and XRP/USDT. Additionally, the exchange has a reputation for security and liquidity and offers a variety of features such as premium order types, leveraged trading and 24/7 customer support.

Get the gate.io installation package for free Get the gate.io installation package for free Feb 21, 2025 pm 08:21 PM

Gate.io is a popular cryptocurrency exchange that users can use by downloading its installation package and installing it on their devices. The steps to obtain the installation package are as follows: Visit the official website of Gate.io, click "Download", select the corresponding operating system (Windows, Mac or Linux), and download the installation package to your computer. It is recommended to temporarily disable antivirus software or firewall during installation to ensure smooth installation. After completion, the user needs to create a Gate.io account to start using it.

Ouyi okx installation package is directly included Ouyi okx installation package is directly included Feb 21, 2025 pm 08:00 PM

Ouyi OKX, the world's leading digital asset exchange, has now launched an official installation package to provide a safe and convenient trading experience. The OKX installation package of Ouyi does not need to be accessed through a browser. It can directly install independent applications on the device, creating a stable and efficient trading platform for users. The installation process is simple and easy to understand. Users only need to download the latest version of the installation package and follow the prompts to complete the installation step by step.

How to automatically set permissions of unixsocket after system restart? How to automatically set permissions of unixsocket after system restart? Mar 31, 2025 pm 11:54 PM

How to automatically set the permissions of unixsocket after the system restarts. Every time the system restarts, we need to execute the following command to modify the permissions of unixsocket: sudo...

Ouyi Exchange Download Official Portal Ouyi Exchange Download Official Portal Feb 21, 2025 pm 07:51 PM

Ouyi, also known as OKX, is a world-leading cryptocurrency trading platform. The article provides a download portal for Ouyi's official installation package, which facilitates users to install Ouyi client on different devices. This installation package supports Windows, Mac, Android and iOS systems. Users can choose the corresponding version to download according to their device type. After the installation is completed, users can register or log in to the Ouyi account, start trading cryptocurrencies and enjoy other services provided by the platform.

See all articles