https://github.com/funbringer/build_flamegraph
Transform raw profiler files into SVG using FlameGraph
https://github.com/funbringer/build_flamegraph
dtrace flamegraph perf svg
Last synced: 5 months ago
JSON representation
Transform raw profiler files into SVG using FlameGraph
- Host: GitHub
- URL: https://github.com/funbringer/build_flamegraph
- Owner: funbringer
- License: mit
- Created: 2017-12-21T18:13:43.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2018-06-04T10:30:37.000Z (over 7 years ago)
- Last Synced: 2025-04-04T21:14:29.031Z (11 months ago)
- Topics: dtrace, flamegraph, perf, svg
- Language: Shell
- Size: 3.91 KB
- Stars: 3
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
## build_flamegraph
```
Transform raw profiler files into SVG using FlameGraph
Examples:
build_flamegraph transform perf.data into perf.data.svg
build_flamegraph --open perf.data -> perf.data.svg, open SVG file
build_flamegraph --clean perf.data -> perf.data.svg, clean temp files
build_flamegraph --fresh perf.data -> perf.data.svg, don't reuse temp files
build_flamegraph --in=abc.data --out=def.svg transform abc.data into def.svg
Options:
--help show this message
--profiler specify a profiler (perf by default)
--in specify a file produced by profiler
--out specify a name of produced SVG file
--clean remove temp files at exit
--fresh don't reuse temp files
--open open SVG file using xdg-open
```