1 Star 0 Fork 0

linngc / central-mirror

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
pprof_server.go 489 Bytes
一键复制 编辑 原始数据 按行查看 历史
linngc 提交于 2024-03-08 18:15 . add:添加pprof方法
// Package pprof
// @Link https://gitee.com/linngc/central-mirror
// @Copyright Copyright (c) 2022 central CLI
// @Author linngc
// @License
//
package pprof
import (
"github.com/gogf/gf/v2/net/ghttp"
"runtime"
)
// StartPProfServer 开启PProf服务性能分析
func StartPProfServer(s *ghttp.Server) {
runtime.SetMutexProfileFraction(1) // (非必需)开启对锁调用的跟踪
runtime.SetBlockProfileRate(1) // (非必需)开启对阻塞操作的跟踪
s.EnablePProf()
}
Go
1
https://gitee.com/linngc/central-mirror.git
git@gitee.com:linngc/central-mirror.git
linngc
central-mirror
central-mirror
4aaf4b1e930c

搜索帮助

53164aa7 5694891 3bd8fe86 5694891