Go tool pprof性能监控调试工具基本使用说明

Go tool pprof性能监控调试工具基本使用说明

Go tool pprof使用方式

go中有pprof包来做代码的性能监控主要涉及两个pkg:

1
2
3
4
5
6
7
8
9
10
11
#web服务器:
import (
"net/http"
_ "net/http/pprof"
)

#一般应用程序(实际应用无web交互)
import (
"net/http"
_ "runtime/pprof"
)
Read more