mirror of
https://github.com/astaxie/beego.git
synced 2024-11-22 13:00:54 +00:00
26 lines
618 B
Go
26 lines
618 B
Go
package beego
|
|
|
|
import (
|
|
"net/http/pprof"
|
|
)
|
|
|
|
type ProfController struct {
|
|
Controller
|
|
}
|
|
|
|
func (this *ProfController) Get() {
|
|
ptype := this.Ctx.Params[":pp"]
|
|
if ptype == "" {
|
|
pprof.Index(this.Ctx.ResponseWriter, this.Ctx.Request)
|
|
} else if ptype == "cmdline" {
|
|
pprof.Cmdline(this.Ctx.ResponseWriter, this.Ctx.Request)
|
|
} else if ptype == "profile" {
|
|
pprof.Profile(this.Ctx.ResponseWriter, this.Ctx.Request)
|
|
} else if ptype == "symbol" {
|
|
pprof.Symbol(this.Ctx.ResponseWriter, this.Ctx.Request)
|
|
} else {
|
|
pprof.Index(this.Ctx.ResponseWriter, this.Ctx.Request)
|
|
}
|
|
this.Ctx.ResponseWriter.WriteHeader(200)
|
|
}
|