go调查内存泄漏
Posted niukuo
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了go调查内存泄漏相关的知识,希望对你有一定的参考价值。
curl x.x.x.x/debug/pprof/heap > base.heap
过段时间
curl x.x.x.x/debug/pprof/heap > current.heap
go tool pprof -svg -base base.heap <binary> current.heap > diff.svg
以上是关于go调查内存泄漏的主要内容,如果未能解决你的问题,请参考以下文章
Go(lang):如何使用 PPROF 堆配置文件来查找内存泄漏?