pprof

go tool pprof -http=127.0.0.1:8181/:8181 *.file/http://localhost:1234/debug/pprof/heap

top

flat  flat%   sum%        cum   cum%

flat 函数内部除去调用其他函数的开销
cum 函数内部所有开销(包括调用其他人)
sum 本行以及本行之上的行的flat开销之和

你可能感兴趣的:(pprof)