Linux debugging tools that developers and operators must look at [Recommended]

Linux debugging tools that developers and operators must look at [Recommended]

System performance expert Brendan D. Gregg updated his famous talk (Linux Performance Tools) and slides on Linux performance at the LinuxCon NA 2014 conference. The tools used in daily Linux development are summarized from the perspectives of monitoring, testing, optimization, and configuration. Below are the main pictures and information, I hope it will be helpful to you.

Performance Tools (Linux Performance Tools-full)

This picture is a high-resolution version of the monitoring, testing, and tuning process. They will be displayed separately according to different categories later.

Linux Performance Benchmark Tools

Benchmark is an evaluation method, which consists of three parts: data set, workload, and measurement indicators. It has long-term applications in the entire computer field.

The most successful application of Benchmark in the computer field is performance testing, which mainly tests the execution time, transmission speed, throughput, resource utilization, etc. of the load.

Linux Performance Observability Tools

According to the different monitoring contents, the tools can be divided into three levels: basic, intermediate and advanced. Corresponding to the following three chapters respectively

Basic Linux Monitoring Tools

perf-tools

perf-tools: is a toolset created by Brendan Gregg. Its goal is to achieve maximum functionality with minimal dependencies and to be easy to install and use.

Do one thing and do it well. ——Brendan Greg

sar

sar (System Activity Reporter) is one of the most comprehensive system performance analysis tools on Linux. It can report system activities from many aspects, including: file reading and writing, system call usage, disk I/O, CPU efficiency, memory usage, process activity and IPC-related activities.

Linux Performance Tuning Tools

Most systems will respond to increased load with some degree of performance degradation. The ability of a system to accept a higher load is called scalability, and modifying the system to handle the higher load is the purpose of Performance Tuning Tools.

Tracing Tools (Linux bcc/BPF Tools)

A new technology is emerging in Linux that provides system administrators and developers with a host of new tools and dashboards for performance analysis and troubleshooting. It is called BPF (Berkeley Packet Filter).

eBPF is an enhanced version of BPF and has been added to the Linux 4.x series kernel. Can do more than just filter packets, allowing custom analyzers to be executed on Linux dynamic traces, static traces, and analysis events.

Static Information (Linux Static Performance Tools)

I believe these are very familiar to Linux practitioners.

If you want to do your work well, you must first sharpen your tools. Good tools can quickly locate problems and shorten the debugging cycle. There are so many tools on the Linux platform that it's hard to tell which are the best. The most tried and tested simple tools are all in the above article. Do you know them all?

Summarize

The above is the Linux debugging tools that I introduced to you, which are indispensable for development and operation and maintenance. I hope it will be helpful to you. If you have any questions, please leave me a message and I will reply to you in time. I would also like to thank everyone for their support of the 123WORDPRESS.COM website!
If you find this article helpful, please feel free to reprint it and please indicate the source. Thank you!

You may also be interested in:
  • How to use the Python standard library for performance testing
  • Writing a performance testing tool in Python (Part 1)
  • Detailed explanation of the performance test monitoring network throughput process

<<:  Detailed explanation of the practical application of regular expressions in JavaScript

>>:  Summary of the differences between count(*), count(1) and count(col) in MySQL

Recommend

Introduction to encryption of grub boot program in Linux

Table of contents 1. What is grub encryption 2. g...

Using streaming queries in MySQL to avoid data OOM

Table of contents 1. Introduction 2. JDBC impleme...

Provides helpful suggestions for improving website design

<br />Scientifically Design Your Website: 23...

React nested component construction order

Table of contents In the React official website, ...

Summary of common functions and usage methods of WeChat applet development

Here, I have mainly sorted out some commonly used...

Difference between var and let in JavaScript

Table of contents 1. Scopes are expressed in diff...

Detailed explanation of the difference between CSS link and @import

How to add css in html? There are three ways to s...

Summary of methods to clear cache in Linux system

1) Introduction to cache mechanism In the Linux s...

MySQL replication mechanism principle explanation

Background Replication is a complete copy of data...

Basic JSON Operation Guide in MySQL 5.7

Preface Because of project needs, the storage fie...

Vue Learning - VueRouter Routing Basics

Table of contents 1. VueRouter 1. Description 2. ...

Advantages of MySQL covering indexes

A common suggestion is to create indexes for WHER...

Detailed explanation of the use of this.$set in Vue

Table of contents Use of this.$set in Vue use Why...

Django+mysql configuration and simple operation database example code

Step 1: Download the mysql driver cmd enters the ...