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

https://github.com/jasonrohrer/wallClockProfiler is a profiler that, unlike perf, do not generate any unknown frame. I personally think it is very useful, and that it should be supported here. I might open...

Maybe this is obvious for all the rest, but I have a very hard time to understand what string format exactly I should write as input into stdin of inferno-flamegraph....

## Version Inferno 0.11.18 ## Issue When using Inferno to process sampled `perf script` output, some stacktraces a missing in a generated flamegraph.svg ``` perf record -F499 -e 'syscalls:sys_enter_*' --call-graph...

Basically working. Required to be done: - [ ] Old `quick-xml` update https://github.com/jonhoo/inferno/pull/282 - [x] Add more logs and tests - [ ] Documentation and changelog update Fixes #246

When filtering lines given the `base` option, the line was parsed using `;` but given that a space-separated sample count could be included the first iterated value was always ignored...

Consider a diff of these two (`cargo run --bin inferno-diff-folded old1.prof new2.prof | cargo run --bin inferno-flamegraph -- - > out.svg`): ``` parent;first_child 10 parent;second_child 10 parent2 30 ``` and...

Since [clap 4.4 bumped its MSRV to 1.70](https://github.com/clap-rs/clap/blob/master/CHANGELOG.md#440---2023-08-24) inferno no longer builds on 1.64 and needs minimum 1.70 This PR: * bumps inferno's MSRV to 1.70 * makes use of...

Inspired by and continued from #126 by @daniellockyer This PR is a bit different, because in the meantime Xdebug 3 was released, which apparently introduced a new tracing format as...

add --total option for generating the flame graph. see https://github.com/brendangregg/FlameGraph/pull/14 and https://github.com/jonhoo/inferno/issues/17. The use case for this option is comparing multiple perf runs directly against one another. Specifying the #...

Hi, I wanted to experiment with fuzzing in Rust, so I thought that I would start with this crate, since you have suggested that some fuzz tests would be nice...