1、配置
import _ "net/http/pprof"
go func() {
http.ListenAndServe("0.0.0.0:8899", nil)
}()
访问http://127.0.0.1:8899/debug/pprof/
2、采样频率
3、下载profile的接口
1、/debug/pprof/profile?seconds=30:访问这个链接会自动进行 CPU profiling,持续 30s,并生成一个文件供下载
2、/debug/pprof/heap: 访问这个链接会得到一个内存 Profiling 结果的文件。内存显示默认的Type是inuse_space,即常驻内存。与之对应的是alloc_objects,表示临时分配的内存。
3、/debug/pprof/block:block Profiling的路径
4、/debug/pprof/goroutine:运行的 goroutines 列表,以及调用关系
5、/debug/pprof/trace?seconds=5:查看各个goroutine执行耗时情况,持续5s,包括网络等待耗时、同步耗时、GC耗时等。
4、可视化profile的命令
go tool pprof -http=":8081" --nodefration=0.05 goroutine(profile文件名)
表示如果调用的子函数使用的 CPU、memory 不超过 5%,就忽略它,不显示在图片中。