tikv / pprof-rs

A Rust CPU profiler implemented with the help of backtrace-rs
Apache License 2.0
1.3k stars 99 forks source link

Export UnresolvedReport #132

Closed viglia closed 2 years ago

viglia commented 2 years ago

This let the user the option to get an unsymbolicated report.

Useful when the user is not interested in symbolication on the client.

Thanks to this is possible to collect the absolute addresses (frame instruction pointer) instead of the relative address crafted by resolve_symbol.

With this absolute address is then possible to run symbolication as a separate process with the support of the debug symbol files if needed.

viglia commented 2 years ago

@YangKeao thanks for looking over this PR.

I've updated the CHANGELOG.md as requested.

viglia commented 2 years ago

Hi @YangKeao , any update ?