Skip to content

Commit 8da8104

Browse files
committed
Add production eBPF kernel debugging tools in test directory
- Add English version debugging tools: - quick_env_check.sh: Environment assessment script - build_vmlinux.sh: Build matching vmlinux script - production_debug_guide.md: Complete debugging guide - README.md: Complete usage documentation - Add Chinese version debugging tools: - quick_symbol_check.sh: Symbol matching checker - build_matching_vmlinux.sh: vmlinux builder - production_kernel_debug.md: Technical guide - README_PRODUCTION_DEBUG.md: Usage guide - Tools for production environment eBPF debugging without KGDB - Support symbol matching, runtime observation, crash dump analysis - Safe for production environments
1 parent 06ca98e commit 8da8104

19 files changed

Lines changed: 3560 additions & 0 deletions

test/Cargo.lock

Lines changed: 168 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

test/Cargo.toml

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
[package]
2+
name = "simple-ebpf-loader"
3+
version = "0.1.0"
4+
edition = "2021"
5+
6+
# 排除此包从主workspace
7+
[workspace]
8+
9+
[dependencies]
10+
libbpf-rs = "0.23"
11+
anyhow = "1.0"

0 commit comments

Comments
 (0)