14.6 pprof支持

Go语言有一个非常棒的设计就是标准库里面带有代码的性能监控工具,在两个地方有包:

  1. net/http/pprof
  2. runtime/pprof

其实net/http/pprof中只是使用runtime/pprof包来进行封装了一下,并在http端口上暴露出来

beego支持pprof

目前beego框架新增了pprof,该特性默认是不开启的,如果你需要测试性能,查看相应的执行goroutine之类的信息,其实Go的默认包”net/http/pprof”已经具有该功能,如果按照Go默认的方式执行Web,默认就可以使用,但是由于beego重新封装了ServHTTP函数,默认的包是无法开启该功能的,所以需要对beego的内部改造支持pprof。

  • 首先在beego.Run函数中根据变量是否自动加载性能包

    1. if PprofOn {
    2. BeeApp.RegisterController(`/debug/pprof`, &ProfController{})
    3. BeeApp.RegisterController(`/debug/pprof/:pp([\w]+)`, &ProfController{})
    4. }
  • 设计ProfController

  1. package beego
  2. import (
  3. "net/http/pprof"
  4. )
  5. type ProfController struct {
  6. Controller
  7. }
  8. func (this *ProfController) Get() {
  9. switch this.Ctx.Param[":pp"] {
  10. default:
  11. pprof.Index(this.Ctx.ResponseWriter, this.Ctx.Request)
  12. case "":
  13. pprof.Index(this.Ctx.ResponseWriter, this.Ctx.Request)
  14. case "cmdline":
  15. pprof.Cmdline(this.Ctx.ResponseWriter, this.Ctx.Request)
  16. case "profile":
  17. pprof.Profile(this.Ctx.ResponseWriter, this.Ctx.Request)
  18. case "symbol":
  19. pprof.Symbol(this.Ctx.ResponseWriter, this.Ctx.Request)
  20. }
  21. this.Ctx.ResponseWriter.WriteHeader(200)
  22. }

使用入门

通过上面的设计,你可以通过如下代码开启pprof:

  1. beego.PprofOn = true

然后你就可以在浏览器中打开如下URL就看到如下界面: pprof支持 - 图1

图14.7 系统当前goroutine、heap、thread信息

点击goroutine我们可以看到很多详细的信息:

pprof支持 - 图2

图14.8 显示当前goroutine的详细信息

我们还可以通过命令行获取更多详细的信息

  1. go tool pprof http://localhost:8080/debug/pprof/profile

这时候程序就会进入30秒的profile收集时间,在这段时间内拼命刷新浏览器上的页面,尽量让cpu占用性能产生数据。

  1. (pprof) top10
  2. Total: 3 samples
  3. 1 33.3% 33.3% 1 33.3% MHeap_AllocLocked
  4. 1 33.3% 66.7% 1 33.3% os/exec.(*Cmd).closeDescriptors
  5. 1 33.3% 100.0% 1 33.3% runtime.sigprocmask
  6. 0 0.0% 100.0% 1 33.3% MCentral_Grow
  7. 0 0.0% 100.0% 2 66.7% main.Compile
  8. 0 0.0% 100.0% 2 66.7% main.compile
  9. 0 0.0% 100.0% 2 66.7% main.run
  10. 0 0.0% 100.0% 1 33.3% makeslice1
  11. 0 0.0% 100.0% 2 66.7% net/http.(*ServeMux).ServeHTTP
  12. 0 0.0% 100.0% 2 66.7% net/http.(*conn).serve
  13. (pprof)web

pprof支持 - 图3

图14.9 展示的执行流程信息