Skip to content

Latest commit

 

History

History
23 lines (15 loc) · 1.01 KB

File metadata and controls

23 lines (15 loc) · 1.01 KB

tracing-libatrace

Instrument your application with tracing and libatrace, and get stack view of your application activity with timing information using chrome browser:

rustc typeck_fn tracing

rustc borrowck tracing

Setup

After instrumenting your app with tracing, add this subscriber like this:

let subscriber = tracing_subscriber::Registry::default().with(tracing_libatrace::layer().unwrap());
tracing::subscriber::set_global_default(subscriber).unwrap();

Other

when running your application, you must run tracing atrace standalone to capture tracing log output,

and then open chrome browser with url chrome://tracing/ to load tracing log and view your application activity with timing and callstack.