内存分析运行时的 Golang 程序

huangapple go评论82阅读模式
英文:

Memory-profile runtime golang program

问题

有没有办法对使用golang编写的运行时程序进行性能分析?
在我的情况下,kubelet的内存稳定增长,我想尝试对其进行内存分析。

英文:

Is there any way to profile a runtime program written in golang?
In my case, kubelet shows steady increase in memory and I want to try memory profiling it.

答案1

得分: 2

在你的应用程序文件中使用import _ "net/http/pprof",然后使用go tool pprof命令或Web界面来对你的应用程序进行性能分析。

参考资料:

英文:

use import _ "net/http/pprof" in your application file and use go tool pprof commands or web UI to profile your application.

reference -

huangapple
  • 本文由 发表于 2021年6月10日 17:35:38
  • 转载请务必保留本文链接:https://go.coder-hub.com/67918554.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定