先下载graphviz

安装成功,在命令行里确认一下:

dot -version

import "net/http"
import _ "net/http/pprof"
func main() {
    // 主函数中添加
	http.ListenAndServe("0.0.0.0:9999", nil)

}

然后启动你的程序,开始跑你压力。

然后在你的命令行中:

 go tool pprof -http=:6666 http://localhost:9999/debug/pprof/profile

等30秒,就会自动的打开一个网页。

选择这个选择就可以打开火焰图了。