pprof

最后更新于:2022-04-02 02:45:01

[TOC] ## pprof pprof包通过它的HTTP服务端提供pprof可视化工具期望格式的运行时剖面文件数据服务 ``` import _ "net/http/pprof" go func() { log.Println(http.ListenAndServe("localhost:6060", nil)) }() ```
';