pyroscope 2.0.0

Pyroscope Profiler Agent for continuous profiling of Rust, Python and Ruby applications.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
pub mod backend;
#[cfg(feature = "backend-jemalloc")]
pub mod jemalloc;
#[cfg(feature = "backend-pprof-rs")]
pub mod pprof;
pub mod ruleset;
pub mod tests;
pub mod types;

pub use backend::*;
#[cfg(feature = "backend-jemalloc")]
pub use jemalloc::*;
#[cfg(feature = "backend-pprof-rs")]
pub use pprof::*;
pub use ruleset::*;
pub use types::*;