我正在尝试在我的 Laravel PHP 应用程序中调试性能问题。我在 Apache / Postgres / PHP5-FPM / Redis 堆栈中的 Debian 7 上安装了 Blackfire 和 JMeter。
如果我正常运行 Blackfire,我得到的正是我想要的。
# blackfire --samples 5 curl http://larachan.foo
Profiling: [########################################] 5/5
Blackfire cURL completed
Profile URL: https://blackfire.io/profiles/xxx/graph
Wall Time 263ms
CPU Time 190ms
I/O Time 72.7ms
Memory 8.74MB
Network n/a n/a -
SQL n/a -
我有一个非常非常简单的 JMeter 测试,它除了尽可能多地加载我的应用程序主页外什么都不做。我能够看到测试运行时性能下降。这是 Java 小程序的 UI。
很简单。
所以现在如果我在这个测试中运行 Blackfire,我会得到一个错误。
# blackfire --samples 5 curl http://larachan.foo
Profiling: [######### ] 2/5
Are you authorized to profile this page? No probe response, missing PHP extension or invalid signature for relaying agent.
那不好。Blackfire 代理日志中有一条非常短且无用的消息。
[2016-01-07T17:49:22-05:00] ERROR: Error while writing to probe: write unix @: broken pipe
[2016-01-07T17:49:22-05:00] ERROR: Profile data is truncated. Please check https://blackfire.io/doc/troubleshooting#trouble-no-response
对该文档的审查未提供使用信息。
我在我的 PHP-FPM 配置文件中指定 Blackfire 在 30 秒后超时。我还要求它将与 PHP 相关的错误放入特定的日志文件中,但从未出现过。
即使在测试过程中,我也可以非常准确地重现这个问题。如果我在 10 个样本测试期间的任何时候激活 JMeter(即使距离完成还有 1 个测试),它会以完全相同的错误消息退出。
有谁知道为什么会发生这种情况?