pprof
pprof copied to clipboard
pprof is a tool for visualization and analysis of profiling data
This change adds $GOPATH/pkg/mod as a possible base to search from given that Go modules have been the norm since Go1.11 and we are currently at Go1.16/1.17, hence support for...
This leaves a very annoying process where one does something like `weblist funcname` and then get greeted with something that looks like this:  The only workaround is to launch...
This escaping requirement was previously leaking into the implementation of `graph.go`, by writing `\n` directly instead of "\n". This meant that if it was displayed in a different program besides...
Fixes #432. In #432 the user has a number of collected heap profiles in the legacy format that they ask pprof to merge and open and the merge fails. The...
This is my first try at solving #218 (and also first time contributing here 😄) This is how it looks:  I have added 5 new CSS classes whose background-colors...
Please answer these questions before submitting your issue. Thanks! ### What version of pprof are you using? If you are using pprof via `go tool pprof`, what's your `go env`...
Please answer these questions before submitting your issue. Thanks! ### What version of pprof are you using? Master branch, latest commit `83db2b799d1f74c40857232cb5eb4c60379fe6c2`. ### What operating system and processor architecture are...
pprof currently supports flame graph visualization in the HTTP server mode. Sometimes it is desired to generate the flame graph visualization as a persistent report, likely as an SVG file.
It would be really useful to have a `column` field along with the line number field in the `Line` message. This is especially useful for runtimes that use source code...