golang trace工具使用

前端之家收集整理的这篇文章主要介绍了golang trace工具使用前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

1)增加如下代码

//导入包
import (
    "net/http"
    _ "net/http/pprof"
)

//增加如下代码
go func() {
        fmt.Println(http.ListenAndServe(":5567",nil))
}()

2)执行curl 127.0.0.1:5567/debug/pprof/trace?seconds=10 > trace.data,获取到trace.data数据

3) 执行 go tool trace -http=':8888' your_app_bin trace.data。会跳转到浏览器查看trace到数据.

原文链接:https://www.f2er.com/go/188491.html

猜你在找的Go相关文章