系统相关
首页 > 系统相关> > Go 排查内存占用过高问题

Go 排查内存占用过高问题

作者:互联网

下载测试代码

go get 中可以获取测试程序, 注意加上 -d 避免下载后自动安装。

Github

go get -d github.com/wolfogre/go-pprof-practice
cd $GOPATH/src/github.com/wolfogre/go-pprof-practice

如果 go get 下载不了, 可以 git clone 下载

git clone https://github.com/wolfogre/go-pprof-practice

对代码进行编译

然后运行

go mod init
go mod tidy

最后再运行

go build
./go-pprof-practice

运行 pprof 命令

go tool pprof http://localhost:6060/debug/pprof/heap

在这里插入图片描述

还是三板斧top, list 等命令
在这里插入图片描述

list 命令

标签:github,get,pprof,practice,排查,内存,go,Go,wolfogre
来源: https://blog.csdn.net/wangming520liwei/article/details/120261745