Golang 分析工具使用 分类: golang 标签: 2019-02-10 17:00:04 解释 top 输出格式 采样点落在该函数中的次数 采样点落在该函数中的百分比 上一项的累积百分比 采样点落在该函数, 以及被它调用的函数中的总次数 采样点落在该函数,以及被它调用的函数中的总次数百分比 函数名 CPU性能分析测试 生成cpu profile go test -bench=".*" -cpuprofile=cpu.prof 生成可供分析的2进制文件 go test -bench=".*" -cpuprofile=cpu.prof -c 会生成一个以包名+.test命名的2进制文件 分析 go tool pprof xxx.test cpu.prof