Linux performance monitoring study notes

Source: Internet
Author: User

Linux performance monitoring study notes www.2cto.com Linux performance monitoring is generally divided into these aspects: 1. CPU 2. Memory 3. IO 4. Network these four aspects are independent of each other but affect each other. Common performance monitoring tools: * vmstat: * mpstat: CPU * sar: * iostat: disk * netstat: Network * dstat: Aggregation * iptraf: Network * netperf: bandwidth * ethtool: network * iperf: Network * tcptrace: Packet Analysis CPU priority: interrupt> kernel process> Context switch (Context Switches): The process of CPU switching between processes. Run Queue: Linux runs various processes through certain scheduling algorithms. The processes to be Run are stored in the Run Queue, the concept of load is the total length of the Run Queue plus the number of running processes. CPU usage: * User Time: Time used by the process in the User space * System Time: Time used by the kernel process * Wait IO: Time waiting for IO * Idle: idle Time judgment criteria: * The Run Queue of each CPU core should not exceed 1 ~ 3 * When the CPU is fully used, the User Time accounts for about 65% ~ 70%, System Time accounts for about 30% ~ 35%, about 0% of Idle ~ 5% Example 1: Many cs, low Interupt and high Wait Time indicate that the process is generally waiting for hardware response Example 2: There are not many cs, high Interupt, and high User Time, it indicates that the Memory of a process waiting for the hardware response www.2cto.com Memory is in the unit of page. The Daemon kswapd is responsible for ensuring that there is idle Memory available. Kswapd does the following: * If the page is not modified, it is put into the idle memory linked list. * The page is modified and corresponds to a file in the file system, write it to the disk. * The page is modified, but it is not written to a file in the file system; the pdflush daemon is responsible for synchronizing dirty pages to the disk for memory usage, as long as you do not need to use swap. If the file is not in the memory cache, the Major Page Fault (MPF) is triggered. At this time, the kernel reads the file from the disk and caches it in the memory, if the same content is required next time, the Minor Page Fault (MnPF) is triggered and read directly from the memory. IO is the slowest part in the computer. Generally, the WaitTime of the CPU is high, and the context switch is much higher than interupt, which indicates that the system IO is the bottleneck. For the network, various tools are used to detect and SET network parameters. For non-LAN networks, the network environment is very complex and needs to be analyzed in detail.
 

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.