inferno icon indicating copy to clipboard operation
inferno copied to clipboard

A Rust port of FlameGraph

Results 50 inferno issues
Sort by recently updated
recently updated
newest added

I recently went to parallelize/optimize a library with `rayon`, and my flamegraph (unsurprisingly!) became absolutely unreadable. Optionally filtering out rayon symbols/functions would be a super helpful feature

It would be nice if we have line numbers. In which case I can differetiate multiple function calls in the same caller. Arranging functions by line numbers is also possible....

Memory usage for `inferno-flamegraph`, and the equivalent Rust API usage, is proportional to input file size. A 44MB file results in 60MB memory usage for me, a 3KB input file...

If we want other projects, like @koute's [nperf](https://github.com/nokia/nperf), to [start using](https://www.reddit.com/r/rust/comments/ak6s89/porting_flamegraph_to_rust_video/ef6h7il/) inferno to draw their flame graphs (and perhaps even to do the collapsing), we need to provide an external...

enhancement
help wanted
info-needed

For example, with the input of ``` a;b 1 a;b 1 a 0 ``` I would expect 3 nodes in the output: * `a` with width 2 * `b` with...

Currently, inferno, even in flame chart mode, doesn't really support passing in start time and end time (rather than just a count). This means that you can't get output like...

The upstream FlameGraph project has a number of outstanding [pull requests](https://github.com/brendangregg/FlameGraph/pulls) that fix bugs and add or improve features. We should take a look through them and see whether we...

bug
enhancement
help wanted
good first issue

Worth noting btw, initially I have built it in release, and it has shown just invalid top-half of stacktraces. [Related report on vanilla flamegraph](https://github.com/brendangregg/FlameGraph/issues/233) ## Steps to reproduce 1. Make...

Taken from https://github.com/flamegraph-rs/flamegraph/issues/76 ![image](https://user-images.githubusercontent.com/936006/75398394-74e8d500-58f1-11ea-920f-6ad90e6a00c4.png) **Steps to reproduce** * Clone https://github.com/jasonwilliams/boa * Start the docker container with the image provided (i do this via vscode) * Install `perf` - ` sudo...

Hi, I am attempting to embed source code in my flamegraphs, basically to have inline tracebacks/callstacks, and... it's a little tricky. The requirement for text formatting means I need to...