go get -u github.com/google/pprof
import _ "net/http/pprof"
go run ...
curl http://localhost:6060/debug/pprof/heap > heap.profile
pprof -http=: ./heap.profile
go get -u github.com/google/pprof
import _ "net/http/pprof"
go run ...
curl http://localhost:6060/debug/pprof/heap > heap.profile
pprof -http=: ./heap.profile