pprof
pprof copied to clipboard
pprof is a tool for visualization and analysis of profiling data
### What version of pprof are you using? master (236ed259b199815a270edb9f8702bd0102e2e8fa) ### What operating system and processor architecture are you using? OS X 10.14, x86_64 ### What did you do? I...
This is with `master` as of now on OSX. If you create a test as described [here](https://github.com/google/pprof/issues/130#issuecomment-357979679). The code will go to `symbolizer.go` `newMapping()`. It will first call `obj.Open("myexe", 0x100000000,...
### What version of pprof are you using? fe62a0baab87ba3abca12f4a621532bf67c9a7d2 ### What operating system and processor architecture are you using? OS X Mojave ### What did you do? ``` $ which...
pprof invokes web browsers when the output of the command (e.g. web or weblist) needs to be visualized in a web browser. golang/go#25853 exhibited a couple of issues around the...
### What did you do? In my case, I built a monitor server which was integrated with pprof. ```go var switcher bool if err := driver.PProf(&driver.Options{ Flagset: &internal.GoFlags{ Profile: profilePath...
### What version of pprof are you using? If you are using pprof via `go tool pprof`, what's your `go env` output? Go tip (8c10ce164f5b0244f3e08424c13666801b7c5973) If you run pprof from...
### What version of pprof are you using? pprof_20170918_00_RC00 ### What operating system and processor architecture are you using? Linux/Intel ### What did you do? "list " works, but weblist...
https://github.com/Netflix/flamescope has pretty nice trick up it sleeve, which I'd like see integrated into pprof. I can see this feature combining 3 parts: * time/offset based filtering for flamegraph (or...
The profile.proto data format does not have a specific way to note which process a sample came from. However, perf.data files tend to include samples from multiple processes. When using...
Similar to [perf_data_converter](https://github.com/google/perf_data_converter), is there tools to convert `tcmalloc::Profile` to the format that pprof expects?