profile_bee/lib.rs
1use legacy::symbols::StackFrameInfo;
2use profile_bee_common::StackInfo;
3
4mod cache;
5pub mod ebpf;
6pub mod html;
7pub mod spawn;
8
9mod legacy;
10pub mod types;
11
12pub mod dwarf_unwind;
13
14pub mod probe_spec;
15pub mod probe_resolver;
16
17mod trace_handler;
18pub use trace_handler::*;
19
20