You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The flamegraph support added in #166 is great, however it's difficult to share this information with others (in emails, bug trackers, etc..). It would be nice if there was a -flamegraph command line option to output a flamegraph svg file. Something like: go tool pprof -flamegraph ./binary ./profile.pprof
The flamegraph support added in #166 is great, however it's difficult to share this information with others (in emails, bug trackers, etc..). It would be nice if there was a
-flamegraph
command line option to output a flamegraph svg file. Something like:go tool pprof -flamegraph ./binary ./profile.pprof
To accomplish this right now, one has to:
go get github.com/uber/go-torch
go-torch -b ./profile.pprof --binaryname ./binary
. (make sure FlameGraph is on your PATH)The text was updated successfully, but these errors were encountered: