doumu6997 2013-09-28 14:14
浏览 46
已采纳

有没有人在go可执行文件上使用简单的pprof?

I have looked at the article about profiling go programs, and I simple do not understand it. Do someone have a simple code example were the performance of code snippet is logged in text file by a profile-"object"?

  • 写回答

1条回答 默认 最新

  • doucan9079 2014-05-02 00:11
    关注

    Here are the commands I use for a simple CPU and memory profiling to get you started.

    Let's say you made a benchmark function like this :

    File something_test.go :

    func BenchmarkProfileMe(b *testing.B) {
     // execute the significant portion of the code you want to profile b.N times
    }
    

    In a shell script:

    # -test XXX is a trick so you don't trigger other tests by asking a non existent specific test called literally XXX
    # you can adapt the benchtime depending on the type of code you want to profile.
    
    go test -v -bench ProfileMe -test.run XXX -cpuprofile cpu.pprof -memprofile mem.pprof -benchtime 10s
    
    go tool pprof --text ./something.test cpu.pprof           ## To get a CPU profile per function
    
    go tool pprof --text ./something.test cpu.pprof --lines   ## To get a CPU profile per line
    
    go tool pprof --text ./something.test mem.pprof           ## To get the memory profile
    

    It will present you the hottests spots in each cases on the console.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 Vue3 大型图片数据拖动排序
  • ¥15 划分vlan后不通了
  • ¥15 GDI处理通道视频时总是带有白色锯齿
  • ¥20 用雷电模拟器安装百达屋apk一直闪退
  • ¥15 算能科技20240506咨询(拒绝大模型回答)
  • ¥15 自适应 AR 模型 参数估计Matlab程序
  • ¥100 角动量包络面如何用MATLAB绘制
  • ¥15 merge函数占用内存过大
  • ¥15 使用EMD去噪处理RML2016数据集时候的原理
  • ¥15 神经网络预测均方误差很小 但是图像上看着差别太大