1 Star 0 Fork 0

gavin_eden/categraf

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
main_posix.go 517 Bytes
一键复制 编辑 原始数据 按行查看 历史
kf 提交于 2023-03-13 17:09 . pprof for windows
//go:build !windows
package main
import (
"os"
"os/signal"
"syscall"
"flashcat.cloud/categraf/agent"
"flashcat.cloud/categraf/config"
"flashcat.cloud/categraf/pkg/pprof"
)
func runAgent(ag *agent.Agent) {
initLog(config.Config.Log.FileName)
ag.Start()
go profile()
handleSignal(ag)
}
func doOSsvc() {
}
var (
pprofStart uint32
)
func profile() {
sc := make(chan os.Signal, 1)
signal.Notify(sc, syscall.SIGUSR2)
for {
sig := <-sc
switch sig {
case syscall.SIGUSR2:
go pprof.Go()
}
}
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/gavin_eden/categraf.git
[email protected]:gavin_eden/categraf.git
gavin_eden
categraf
categraf
main

搜索帮助