search
HomeBackend DevelopmentPHP TutorialLinux performance testing and monitoring sar command_PHP tutorial

Linux performance testing and monitoring sar command

sar (System Activity Reporter system activity report) is currently one of the most comprehensive system performance analysis tools on Linux, which can be used from many aspects Report system activities, including: file reading and writing, system call usage, disk I/O, CPU efficiency, memory usage, process activities and IPC-related activities. This article mainly uses the CentOS6.3 x64 system as an example to introduce the sar command.

Common format of sar command

sar [options] [-A] [-o file] t [n]

where:

t is sampling Interval, n is the number of samples, and the default value is 1;

-o file means storing the command results in a file in binary format, and file is the file name.

options are command line options. Commonly used options for the sar command are as follows:

-A: The sum of all reports

-u: Output CPU usage statistics

-v: Output statistics about inodes, files, and other kernel tables

-d: Output activity information for each block device

- r: Output statistical information of memory and swap space

-b: Display statistical information of I/O and transfer rate

-a: File reading and writing status

-c : Output process statistics, number of processes created per second

-R: Output statistics of memory pages

-y: Terminal device activity

-w: Output System exchange activity information

1. CPU resource monitoring

For example, sample once every 10 seconds, sample 3 times continuously, observe the CPU usage, and store the sampling results in binary form into the current In the file test in the directory, you need to type the following command:

sar -u -o test 10 3

The screen displays as follows:

17:06:16 CPU %user %nice %system %iowait %steal %idle

17:06:26 all 0.00 0.00 0.20 0.00 0.00 99.80

17:06:36 all 0.00 0.00 0.20 0.00 0.00 99.8 0

17:06:46 all 0.00 0.00 0.10 0.00 0.00 99.90

Average: all 0.00 0.00 0.17 0.00 0.00 99.83

Output item description:

C PU: all means statistics Information is averaged across all CPUs.

%user: Displays the percentage of total CPU time used by running at the user level (application).

%nice: Displayed at the user level, the percentage of the total CPU time used for nice operations.

%system: The percentage of total CPU time used by running at the kernel level.

%iowait: Displays the percentage of total CPU time spent waiting for I/O operations.

%steal: The percentage of virtual CPU that the hypervisor is waiting for to service another virtual process.

%idle: Displays the percentage of CPU idle time occupied by the total CPU time.

1. If the value of %iowait is too high, it means that the hard disk has an I/O bottleneck

2. If the value of %idle is high but the system response is slow, it may be that the CPU is waiting to allocate memory. , at this time, the memory capacity should be increased

3. If the value of %idle continues to be lower than 1, the system's CPU processing capability is relatively low, indicating that the most important resource in the system is the CPU.

If you want to view the contents of the binary file test, you need to type the following sar command:

sar -u -f test

2. Inode, file and other kernel table monitoring

For example, to sample every 10 seconds for 3 consecutive times to observe the status of the core table, type the following command:

sar -v 10 3

The screen displays as follows :

17:10:49 dentunusd file-nr inode-nr pty-nr

17:10:59 6301 5664 12037 4

17:11:09 6301 5664 12037 4

17:11:19 6301 5664 12037 4

Average: 6301 5664 12037 4

Output description:

dentunusd: directory cache The number of unused entries in

file-nr: the number of file handles used

inode-nr: the number of inode handles used

pty-nr: Number of pty used

3. Memory and swap space monitoring

For example, sample every 10 seconds, sample 3 times continuously, monitor memory paging:

sar -r 10 3

The screen displays as follows:

Output item description:

kbmemfree: This value is the same as in the free command The free value is basically the same, so it does not include the buffer and cache space.

kbmemused: This value is basically the same as the used value in the free command, so it includes the buffer and cache space.

%memused: This value is a percentage of kbmemused and total memory (excluding swap).

kbbuffers and kbcached: These two values ​​are the buffer and cache in the free command.

kbcommit: Guarantee the memory required by the current system, that is, the memory (RAM swap) required to ensure no overflow.

%commit: This value is a percentage of kbcommit and the total memory (including swap).

4. Memory paging monitoring

For example, sample every 10 seconds, sample 3 times continuously, monitor memory paging:

sar -B 10 3

The screen displays as follows:

Output item description:

pgpgin/s: Indicates the number of bytes (KB) replaced from disk or SWAP to memory per second

pgpgout/s: Indicates the number of bytes replaced from memory to disk or SWAP per second (KB)

fault/s: The number of page faults generated by the system per second, that is, the number of primary and secondary page faults Sum of missing pages (major minor)

majflt/s: The number of major missing pages generated per second.

pgfree/s: The number of pages placed in the idle queue per second

pgscank/s: The number of pages scanned by kswapd per second

pgscand/s: The number of pages directly scanned per second

pgsteal/s: per second The number of pages cleared from the cache to meet memory requirements

%vmeff: the percentage of pages cleared per second (pgsteal) to the total scanned pages (pgscank pgscand)

5. I /O and transfer rate monitoring

For example, to sample every 10 seconds, sample 3 times continuously, and report buffer usage, type the following command:

sar -b 10 3

The screen displays as follows:

18:51:05 tps rtps wtps bread/s bwrtn/s

18:51:15 0.00 0.00 0.00 0.00 0.00

18:51:25 1.92 0.00 1.92 0.00 22.65

18:51:35 0.00 0.00 0.00 0.00 0.00

Average: 0.64 0.00 0.64 0.00 7.59

Output item description:

tps: The total amount of I/O transfers from the physical device per second

rtps: The total amount of data read from the physical device per second

wtps: per second The total amount of data written to the physical device

bread/s: The amount of data read from the physical device per second, in blocks/s

bwrtn/s: The amount of data written to the physical device per second The amount of data written by the physical device, in blocks/s

6. Process queue length and average load status monitoring

For example, sample every 10 seconds, sample 3 times continuously, monitor the process Queue length and average load status:

sar -q 10 3

The screen displays as follows:

19:25:50 runq-sz plist-sz ldavg-1 ldavg- 5 ldavg-15

19:26:00 0 259 0.00 0.00 0.00

19:26:10 0 259 0.00 0.00 0.00

19:26:20 0 259 0.00 0.00 0.00

Average: 0 259 0.00 0.00 0.00

Output item description:

runq-sz: The length of the run queue (number of processes waiting to run)

plist-sz: The number of processes and threads in the process list

ldavg-1: System load average in the last minute

ldavg- 5: System load average in the past 5 minutes

ldavg-15: System load average in the past 15 minutes

7. System exchange activity information monitoring

For example, every 10 seconds Sampling once, sampling 3 times continuously, the monitoring system exchanges activity information:

sar -W 10 3

The screen displays as follows:

19:39:50 pswpin/s pswpout /s

19:40:00 0.00 0.00

19:40:10 0.00 0.00

19:40:20 0.00 0.00

Average: 0.00 0.00

Output item description:

pswpin/s: The number of swap pages swapped in by the system per second

pswpout/s: The number of swap pages swapped out by the system per second Number of swap pages

8. Device usage monitoring

For example, to sample every 10 seconds for 3 consecutive times to report device usage, type the following command:

# sar -d 10 3 –p

The screen displays as follows:

17:45:54DEVtpsrd_sec/swr_sec/savgrq-szavgqu-szawaitsvctm%util

17 :46:04scd00.000.000.000.000.000.000.000.00

17:46:04sda0.000.000.000.000.000.000.000.00

17:46:04vg_livedvd -lv_root0.000.000.000.000.000.000 .000.00

17:46:04vg_livedvd-lv_swap0.000.000.000.000.000.000.000.00

Among them:

The parameter -p can print out the disk device names such as sda, hdc and so on. , if the parameter -p is not used, the device node may be dev8-0, dev22-0

tps: the number of I/Os from the physical disk per second. Multiple logical requests will be merged into one I/O O disk request, the size of a transfer is uncertain.
rd_sec/s: The number of sectors read per second.

wr_sec/s: The number of sectors written per second.

avgrq-sz: Average data size (sectors) of each device I/O operation.

avgqu-sz: Average length of disk request queue.

await: Request disk from From the operation until the system completes processing, the average time consumed for each request, including the request queue waiting time, the unit is milliseconds (1 second = 1000 milliseconds).

svctm: The average time the system takes to process each request, excluding The time spent in the request queue.

%util: The percentage of I/O requests in the CPU. The larger the ratio, the more saturated it is.

1. When the value of avgqu-sz is low , the equipment utilization rate is higher.

2. When the value of %util is close to 1%, it means that the device bandwidth is full.

To determine system bottlenecks, sometimes you need to combine several sar command options

If you suspect that there is a CPU bottleneck, you can use sar -u and sar -q to check

If you suspect If there is a bottleneck in the memory, you can use sar -B, sar -r and sar -W to check

If you suspect that there is a bottleneck in I/O, you can use sar -b, sar -u and sar -d to check

www.bkjia.comtruehttp: //www.bkjia.com/PHPjc/1067483.htmlTechArticlelinux performance testing and monitoring sar command sar (System Activity Reporter system activity report) is currently the most comprehensive on Linux One of the system performance analysis tools, you can analyze the system from many aspects...
Statement
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
如何在 iPhone 和 Android 上关闭蓝色警报如何在 iPhone 和 Android 上关闭蓝色警报Feb 29, 2024 pm 10:10 PM

根据美国司法部的解释,蓝色警报旨在提供关于可能对执法人员构成直接和紧急威胁的个人的重要信息。这种警报的目的是及时通知公众,并让他们了解与这些罪犯相关的潜在危险。通过这种主动的方式,蓝色警报有助于增强社区的安全意识,促使人们采取必要的预防措施以保护自己和周围的人。这种警报系统的建立旨在提高对潜在威胁的警觉性,并加强执法机构与公众之间的沟通,以共尽管这些紧急通知对我们社会至关重要,但有时可能会对日常生活造成干扰,尤其是在午夜或重要活动时收到通知时。为了确保安全,我们建议您保持这些通知功能开启,但如果

在Android中实现轮询的方法是什么?在Android中实现轮询的方法是什么?Sep 21, 2023 pm 08:33 PM

Android中的轮询是一项关键技术,它允许应用程序定期从服务器或数据源检索和更新信息。通过实施轮询,开发人员可以确保实时数据同步并向用户提供最新的内容。它涉及定期向服务器或数据源发送请求并获取最新信息。Android提供了定时器、线程、后台服务等多种机制来高效地完成轮询。这使开发人员能够设计与远程数据源保持同步的响应式动态应用程序。本文探讨了如何在Android中实现轮询。它涵盖了实现此功能所涉及的关键注意事项和步骤。轮询定期检查更新并从服务器或源检索数据的过程在Android中称为轮询。通过

如何在Android中实现按下返回键再次退出的功能?如何在Android中实现按下返回键再次退出的功能?Aug 30, 2023 am 08:05 AM

为了提升用户体验并防止数据或进度丢失,Android应用程序开发者必须避免意外退出。他们可以通过加入“再次按返回退出”功能来实现这一点,该功能要求用户在特定时间内连续按两次返回按钮才能退出应用程序。这种实现显著提升了用户参与度和满意度,确保他们不会意外丢失任何重要信息Thisguideexaminesthepracticalstepstoadd"PressBackAgaintoExit"capabilityinAndroid.Itpresentsasystematicguid

Android逆向中smali复杂类实例分析Android逆向中smali复杂类实例分析May 12, 2023 pm 04:22 PM

1.java复杂类如果有什么地方不懂,请看:JAVA总纲或者构造方法这里贴代码,很简单没有难度。2.smali代码我们要把java代码转为smali代码,可以参考java转smali我们还是分模块来看。2.1第一个模块——信息模块这个模块就是基本信息,说明了类名等,知道就好对分析帮助不大。2.2第二个模块——构造方法我们来一句一句解析,如果有之前解析重复的地方就不再重复了。但是会提供链接。.methodpublicconstructor(Ljava/lang/String;I)V这一句话分为.m

如何在2023年将 WhatsApp 从安卓迁移到 iPhone 15?如何在2023年将 WhatsApp 从安卓迁移到 iPhone 15?Sep 22, 2023 pm 02:37 PM

如何将WhatsApp聊天从Android转移到iPhone?你已经拿到了新的iPhone15,并且你正在从Android跳跃?如果是这种情况,您可能还对将WhatsApp从Android转移到iPhone感到好奇。但是,老实说,这有点棘手,因为Android和iPhone的操作系统不兼容。但不要失去希望。这不是什么不可能完成的任务。让我们在本文中讨论几种将WhatsApp从Android转移到iPhone15的方法。因此,坚持到最后以彻底学习解决方案。如何在不删除数据的情况下将WhatsApp

同样基于linux为什么安卓效率低同样基于linux为什么安卓效率低Mar 15, 2023 pm 07:16 PM

原因:1、安卓系统上设置了一个JAVA虚拟机来支持Java应用程序的运行,而这种虚拟机对硬件的消耗是非常大的;2、手机生产厂商对安卓系统的定制与开发,增加了安卓系统的负担,拖慢其运行速度影响其流畅性;3、应用软件太臃肿,同质化严重,在一定程度上拖慢安卓手机的运行速度。

Android中动态导出dex文件的方法是什么Android中动态导出dex文件的方法是什么May 30, 2023 pm 04:52 PM

1.启动ida端口监听1.1启动Android_server服务1.2端口转发1.3软件进入调试模式2.ida下断2.1attach附加进程2.2断三项2.3选择进程2.4打开Modules搜索artPS:小知识Android4.4版本之前系统函数在libdvm.soAndroid5.0之后系统函数在libart.so2.5打开Openmemory()函数在libart.so中搜索Openmemory函数并且跟进去。PS:小知识一般来说,系统dex都会在这个函数中进行加载,但是会出现一个问题,后

Android APP测试流程和常见问题是什么Android APP测试流程和常见问题是什么May 13, 2023 pm 09:58 PM

1.自动化测试自动化测试主要包括几个部分,UI功能的自动化测试、接口的自动化测试、其他专项的自动化测试。1.1UI功能自动化测试UI功能的自动化测试,也就是大家常说的自动化测试,主要是基于UI界面进行的自动化测试,通过脚本实现UI功能的点击,替代人工进行自动化测试。这个测试的优势在于对高度重复的界面特性功能测试的测试人力进行有效的释放,利用脚本的执行,实现功能的快速高效回归。但这种测试的不足之处也是显而易见的,主要包括维护成本高,易发生误判,兼容性不足等。因为是基于界面操作,界面的稳定程度便成了

See all articles

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

Hot Tools

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

DVWA

DVWA

Damn Vulnerable Web App (DVWA) is a PHP/MySQL web application that is very vulnerable. Its main goals are to be an aid for security professionals to test their skills and tools in a legal environment, to help web developers better understand the process of securing web applications, and to help teachers/students teach/learn in a classroom environment Web application security. The goal of DVWA is to practice some of the most common web vulnerabilities through a simple and straightforward interface, with varying degrees of difficulty. Please note that this software

WebStorm Mac version

WebStorm Mac version

Useful JavaScript development tools

Atom editor mac version download

Atom editor mac version download

The most popular open source editor

MinGW - Minimalist GNU for Windows

MinGW - Minimalist GNU for Windows

This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.