pprof 三把刀
看内存
go tool pprof http://127.0.0.1:6060/debug/pprof/heap?seconds=30
看cpu
go tool pprof http://127.0.0.1:6060/debug/pprof/profile?seconds=30
看协程
go tool pprof http://localhost:6060/debug/pprof/goroutine
端口是自定义的,看看程序内部写的是什么。
同时记得import
import _ "net/http/pprof"
看火焰图
go tool pprof -http=:8081 ./pprof.xxx.samples.cpu.001.pb.gz