import (
_ "net/http/pprof"
)
http.ListenAndServe("0.0.0.0:8080", nil)
然后
http://127.0.0.1:8080/debug/pprof 查看整体信息
下载profile文件 执行
go tool pprof profile cpu_profile
直接top看
或者
安装graphviz 然后web
code
import (
_ "net/http/pprof"
)
http.ListenAndServe("0.0.0.0:8080", nil)
然后
http://127.0.0.1:8080/debug/pprof 查看整体信息
下载profile文件 执行
go tool pprof profile cpu_profile
直接top看
或者
安装graphviz 然后web
评论
发表评论