Top "Pprof" questions

pprof is a golang package used to profile various runtime properties of golang's http server.

How to use pprof in Go program

How to use pprof in Go program? There is a Go package named net/http/pprof,but I can't use …

go google-perftools pprof
Can't get golang pprof working

I have tried to profile some golang applications but I couldn't have that working, I have followed these two tutorials: …

go profiling pprof
How to profile number of goroutines

Basically I want to find if my program is leaking goroutines over time. So I want to see how many …

go profiling pprof
How to interpret pprof output?

I'm trying to profile an application written in go which apparently uses about 256 virtual memory (checked using ps aux). I'm …

performance go pprof heap-profiling
How to profile benchmarks using the pprof tool?

I want to profile my benchmarks generated by go test -c, but the go tool pprof needs a profile file …

go profiling benchmarking pprof
Can't use go tool pprof with an existing server

I have an existing http server which I would like to profile. I have included _ "net/http/pprof"to my …

go gorilla pprof
How to optimize golang program that spends most time in runtime.osyield and runtime.usleep

I've been working on optimizing code that analyzes social graph data (with lots of help from https://blog.golang.org/…

optimization go pprof
Go(lang): How to use PPROF heap profile to find memory leaks?

I am trying to use pprof to verify memory leaks. Can any explain how to read the heap profile that …

memory-leaks go pprof heap-profiling