https://github.com/google/gops
For processes that starts the diagnostics agent, gops can report additional information such as the current stack trace, Go version, memory stats, etc
runtime/pprof:采集程序(非 Server)的运行数据进行分析
net/http/pprof:采集 HTTP Server 的运行时数据进行分析
https://segmentfault.com/a/1190000016412013
而在 Go 语言中,也有类似的命令工具,那就是 gops(Go Process Status),gops 是由 Google 官方出品的一个命令行工具,与 ps 命令的功能类似,能够查看并诊断当前系统中 Go 程序的运行状态及内部情况,在一些使用场景中具有较大的存在意义,属于常用工具
http://dockone.io/article/10681
https://lessisbetter.site/2020/03/15/gops-introduction/