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

原文地址:https://www.cnblogs.com/niukuo/p/9622696.html