golang 工具 pprof 无法正常工作 - 无论分析目标如何,输出都相同

golang tool pprof not working properly - same broken output regardless of profiling target

我以前使用 pprof 工具没有问题,它工作得很好 - 现在无论我配置什么,我都会看到如下输出:

在此示例中分析的应用程序可能进行了 40 多个函数调用,甚至更复杂的应用程序正在为 cpu 和 memprofiling 生成类似的调用图。

我尝试分析的应用程序都是 Web 应用程序,我一次分析它们一分钟并使用 wrk 生成 200,000,000 多个请求 = 所有返回数据和 2xx 响应

pprof 几天前突然停止工作 运行ning osx yosemite - 为了解决我最近升级到 el capitan 的问题,但结果是一样的。

注意:这不仅仅是调用图 - 调用列表或 top 命令产生类似的贫瘠结果,但应用程序本身运行良好:

    (pprof) top
269.97kB of 269.97kB total (  100%)
      flat  flat%   sum%        cum   cum%
  269.97kB   100%   100%   269.97kB   100%  
(pprof) 

我正在使用以下软件包:"github.com/davecheney/profile" with go v1.5.1

为清楚起见,这是我生成配置文件的操作::

我将上面的包导入 main.go 并将以下内容放在我的主要功能的顶部:

defer profile.Start(profile.MemProfile).Stop()

然后我构建二进制文件并 运行 它:

go build -o orig /Users/danielwall/www/netlistener/application/adrequest.go /Users/danielwall/www/netlistener/application/cookie.go /Users/danielwall/www/netlistener/application/header.go /Users/danielwall/www/netlistener/application/lex.go /Users/danielwall/www/netlistener/application/main.go /Users/danielwall/www/netlistener/application/publisher_ids.go /Users/danielwall/www/netlistener/application/request.go /Users/danielwall/www/netlistener/application/response.go /Users/danielwall/www/netlistener/application/server.go /Users/danielwall/www/netlistener/application/sniff.go /Users/danielwall/www/netlistener/application/status.go /Users/danielwall/www/netlistener/application/transfer.go

./orig

然后我看到这样的输出:

2015/11/16 11:39:49 profile: memory profiling enabled, /var/folders/26/2sj70_sn72l_93j7tf6r07gr0000gn/T/profile614358295/mem.pprof

现在我从另一个终端运行应用程序:

    wrk -d60 -c10 -H "X-Device: desktop" -H "X-Country-Code: GB" "http://localhost:8189/app?id=111&schema=xml2&ad_type=auto&url=http://test.com/&category=bob"
Running 1m test @ http://localhost:8189/app?id=111&schema=xml2&ad_type=auto&url=http://test.com/&category=bob
  2 threads and 10 connections
  Thread Stats   Avg      Stdev     Max   +/- Stdev
    Latency   414.09us    0.92ms  55.36ms   95.66%
    Req/Sec    17.57k     3.19k   22.59k    76.00%
  2097764 requests in 1.00m, 684.20MB read
Requests/sec:  34958.03
Transfer/sec:     11.40MB

60 秒后,我返回查看我的个人资料:

^C2015/11/16 12:05:20 profile: caught interrupt, stopping profiles

go tool pprof /var/folders/26/2sj70_sn72l_93j7tf6r07gr0000gn/T/profile614358295/mem.pprof

知道这里可能发生了什么,或者我可以从哪里开始解决问题 shooting/solving 这个吗?

欢迎任何帮助建议。

您的 go tool pprof 调用缺少二进制文件本身。称其为

go tool pprof ./orig /path/to/profile.pprof