基本路径:/debug/pprof/
支持的分析类型:
cpu(CPU Profiling): HOST/debug/pprof/block,查看导致阻塞同步的堆栈跟踪
goroutine:HOST/debug/pprof/heap,查看活动对象的内存分配情况
mutex(Mutex Profiling):HOST/debug/pprof/threadcreate,查看创建新OS线程的堆栈跟踪
启动 PProf 可视化界面
方法一:
go tool pprof -http=:8080 cpu.prof
方法二:
go tool pprof cpu.prof
web
有疑问加站长微信联系(非本文作者)