FlameGraph icon indicating copy to clipboard operation
FlameGraph copied to clipboard

Stack trace visualizer

Results 141 FlameGraph issues
Sort by recently updated
recently updated
newest added

This package would probably make sense to link into your "[flame graphs news](http://www.brendangregg.com/flamegraphs.html#Updates)" See [https://github.com/baverman/flameprof](https://github.com/baverman/flameprof)

**when i use FlameGraph tools to analyze the result of `perf record -e syscalls:sys_enter_brk` occur "Unrecognized line" error** `Unrecognized line: zonesvr 162731 [004] 42055630.368972: syscalls:sys_enter_brk: brk: 0x00000000 at ./stackcollapse-perf.pl line...

Flame graphs of anything that uses Valve's Proton lose the Proton stack frames because the regex does not handle the space in the directory name "Proton 3.16". Signed-off-by: Richard Yao

When FlameGraph is piped to another tool (e.g. [Austin](https://github.com/P403n1x87/austin)), pressing Ctrl+C causes the loss of all the input produced so far. The proposed change handles the SIGINT and interrups FlameGraph...

Hi, In [1.2. Block Device I/O](http://www.brendangregg.com/FlameGraphs/offcpuflamegraphs.html#BlockIO), the code snippet calls `./stackcollapse-perf.html`. That might have been the script name in the past, but to work with the current git master, it...

Before: Differential flamegraph shows blue/red color based on exclusive samples only. There's no workaround to use inclusive differential. This makes it hard to identify low hanging fruits in such cases...

I cloned the FlameGraph folder into drupal libraries to work with the FlameGraph module but opening samples with FlameGraph I get the error > No valid input provided to flamegraph.pl...

Hy, I have a tiny problem. I'm having problems converting out.perf to out.folded. Out perf has 1.2MB of data out.folded 0 after the conversion. This is leaving me very confused...

This is built on the following work: * https://github.com/jvm-profiling-tools/perf-map-agent/issues/50 * http://batey.info/docker-jvm-flamegraphs.html * https://github.com/chbatey/perf-map-agent/commit/60c50eb5519355b68bab8a3ddfdf1c9bf67d32f4 Sometimes `jrunscript` is not included in images. Should we try `JAVA_HOME` and fall back to `jrunscript` if...

Suppose I have two overloaded functions with different data types: ``` int func(int a) { ... } int func(bool b) { ... } int main () { func(1234); func(true); }...