2024-11-16 00:34:00
github.com
简体中文 | English
Kyanos is an eBPF-based network issue analysis tool that enables you to capture network requests, such as HTTP, Redis, and MySQL requests.
It also helps you analyze abnormal network issues and quickly troubleshooting without the complex steps of packet capturing, downloading, and analysis.
- Powerful Traffic Filtering: Not only can filter based on traditional IP/port information, can also filter by process/container, L7 protocol information, request/response byte size, latency, and more.
# Filter by pid
./kyanos watch --pids 1234
# Filter by container id
./kyanos watch --container-id abc
# Filter by Redis key
./kyanos watch redis --keys my-key1,my-key2
# Filter by response byte size
./kyanos watch --resp-size 10000
-
Advanced Analysis Capabilities : Unlike tcpdump, which only provides fine-grained packet capture, Kyanos supports aggregating captured packet metrics across various dimensions, quickly providing the critical data most useful for troubleshooting.
Imagine if the bandwidth of your HTTP service is suddenly maxed out—how would you quickly analyzewhich IPs
andwhich requests
are causing it?
With Kyanos, you just need one command:kyanos stat http --bigresp
to find the largest response byte sizes sent to remote IPs and view specific data on request and response metrics. -
In-Depth Kernel-Level Latency Details: In real-world, slow queries to remote services like Redis can be challenging to diagnose precisely. Kyanos provides kernel trace points from the arrival of requests/responses at the network card to the kernel socket buffer, displaying these details in a visual format. This allows you to identify exactly which stage is causing delays.
-
Lightweight and Dependency-Free: Almost zero dependencies—just a single binary file and one command, with all results displayed in the command line.
-
Automatic SSL Traffic Decryption : All captured requests and responses are presented in plaintext.
Capture HTTP Traffic with Latency Details
Run the command:
The result is as follows:
Capture Redis Traffic with Latency Details
Run the command:
The result is as follows:
Identify the Slowest Requests in the Last 5 Seconds
Run the command:
./kyanos stat --slow --time 5
The result is as follows:
Kyanos currently supports kernel versions 3.10(from 3.10.0-957) and 4.14 or above (with plans to support versions between 4.7 and 4.14 in the future).
You can check your kernel version using
uname -r
.
You can download a statically linked binary compatible with x86_64 and arm64 architectures from the release page:
tar xvf kyanos_vx.x.x_linux_x86.tar.gz
Then, run:
If the following table appears:
🎉 Congratulations! Kyanos has started successfully.
The simplest usage captures all protocols currently supported by Kyanos:
Each request-response record is stored as a row in a table, with each column capturing basic information about that request. You can use the arrow keys or j/k
to move up and down through the records:
Press Enter
to access the details view:
In the details view, the first section shows Latency Details. Each block represents a “node” that the data packet passes through, such as the process, network card, and socket buffer.
Each block includes a time value indicating the time elapsed from the previous node to this node, showing the process flow from the process sending the request to the network card, to the response being copied to the socket buffer, and finally read by the process, with each step’s duration displayed.
The second section provides Detailed Request and Response Content, split into Request and Response parts, and truncates content over 1024 bytes.
For targeted traffic capture, such as HTTP traffic:
You can narrow it further to capture traffic for a specific HTTP path:
./kyanos watch http --path /abc
Learn more: Kyanos Docs
Important
If you encounter any issues or bugs while using the tool, please feel free to ask questions in the issue tracker.
For more detailed inquiries, you can use the following contact methods:
Support Techcratic
If you find value in Techcratic’s insights and articles, consider supporting us with Bitcoin. Your support helps me, as a solo operator, continue delivering high-quality content while managing all the technical aspects, from server maintenance to blog writing, future updates, and improvements. Support Innovation! Thank you.
Bitcoin Address:
bc1qlszw7elx2qahjwvaryh0tkgg8y68enw30gpvge
Please verify this address before sending funds.
Bitcoin QR Code
Simply scan the QR code below to support Techcratic.
Please read the Privacy and Security Disclaimer on how Techcratic handles your support.
Disclaimer: As an Amazon Associate, Techcratic may earn from qualifying purchases.