Crate pprof[][src]

Expand description

pprof-rs is an integrated profiler for rust program.

This crate provides a programable interface to start/stop/report a profiler dynamically. With the help of this crate, you can easily integrate a profiler into your rust program in a modern, convenient way.

A sample usage is:

let guard = pprof::ProfilerGuard::new(100).unwrap();

Then you can read report from the guard:

if let Ok(report) = guard.report().build() {
   println!("report: {}", &report);
};

Modules

Structs

A representation of a backtrace. thread_name and thread_id was got from pthread_getname_np and pthread_self. frames is a vector of symbols.

RAII structure used to stop profiling when dropped. It is the only interface to access profiler.

The final presentation of a report which is actually an HashMap from Frames to isize (count).

A builder of Report and UnresolvedReport. It builds report from a running Profiler.

Symbol is a representation of a function symbol. It contains name and addr of it. If built with debug message, it can also provide line number and filename. The name in it is not demangled.

Enums

Constants

Define the MAX supported stack depth. TODO: make this variable mutable.

Define the MAX supported thread name length. TODO: make this variable mutable.

Type Definitions