0

我正在尝试使用 Blackfire 分析 HTTP 请求。我已经安装了这些元素:

  • blackfire-agent 及其配置文件(带有我的服务器 ID)
  • blackfire 客户端,我用(我的客户端 ID)配置它(我启动了C:\Users\a.t>blackfire config
  • blackfire php 探针(dll、php.ini 是用我的服务器 ID 编辑的)

但我仍然发现一个错误:

C:\Users\a.t>blackfire curl --resolve 'simdate.dev:80:127.0.0.1' http://simdate.dev/

您是否有权配置此页面?没有探测响应、缺少 PHP 扩展或中继代理的签名无效。

  • Xdebug 和其他调试扩展在 php.ini 文件中被禁用
  • 客户端 ID 和客户端密钥不同于服务器 ID 和服务器密钥。
  • Blackfire Agent 也在运行(如果我停止它,我也会遇到同样的错误)

这是我在 php 中声明的日志文件中的日志文件:

Sat Mar 11 12:31:44 2017 (11080): [Info] Can't find pgsql module, Blackfire SQL analyzer will be disabled for pgsql SQL queries
Sat Mar 11 12:31:44 2017 (11080): [Info] Can't find oci module, Blackfire SQL analyzer will be disabled for oci SQL queries
Sat Mar 11 12:31:58 2017 (11080): [Debug] Found signature : RWQUOK8z****************iNQE=
Sat Mar 11 12:31:58 2017 (11080): [Info] No key found in memory or key expired, continuing without validation
Sat Mar 11 12:31:58 2017 (11080): [Debug] Found valid agent id
Sat Mar 11 12:31:58 2017 (11080): [Debug] Found file based probe stream (utcp://127.0.0.1:8307)
Sat Mar 11 12:31:58 2017 (11080): [Warning] Unable to create a network stream

这是我从 blackfire-agent 输出的日志。正如你所看到的,他似乎从来没有捕捉到联系:

[2017-03-11T12:43:03+01:00] DEBUG: blackfire-agent 1.9.2 windows amd64 gc 2016-12-14T10:46:38+0000
[2017-03-11T12:43:03+01:00] DEBUG: Retrieving public keys from API
[2017-03-11T12:43:03+01:00] DEBUG: Fetching public keys from API
[2017-03-11T12:43:03+01:00] DEBUG: Sending request GET https://blackfire.io/agent-api/v1/public-keys
[2017-03-11T12:43:03+01:00] DEBUG: API answered with status code: 200
[2017-03-11T12:43:03+01:00] DEBUG: Unmarshalled json result: &{[{RWQUOK8z--------------------------Ac= 20170426}]}
[2017-03-11T12:43:03+01:00] DEBUG: Started verification of '1' public keys
[2017-03-11T12:43:03+01:00] DEBUG: Retrieving specs from the API
[2017-03-11T12:43:03+01:00] DEBUG: Fetching specs from API
[2017-03-11T12:43:03+01:00] DEBUG: Sending request GET https://blackfire.io/agent-api/v1/specs
[2017-03-11T12:43:03+01:00] DEBUG: API answered with status code: 200
[2017-03-11T12:43:03+01:00] DEBUG: Merging spec from the API and local spec
[2017-03-11T12:43:03+01:00] DEBUG: New value of DefaultSpec.LastMaxAge:  24h0m0s
[2017-03-11T12:43:03+01:00] DEBUG: Listening for connections on 'tcp://127.0.0.1:8307'
[2017-03-11T12:43:03+01:00] DEBUG: Waiting for new connection

这是两张截图

第一个显示禁用的 Xdebug XDebug 被禁用 第二个显示我的 blackfire php 配置(xxxx 和 yyyy 是屏幕截图的实际值)phpinfo信息

Windows 防火墙已被禁用。

4

1 回答 1

2

您的 php.ini 配置中有错字,您应该使用tcp://127.0.0.1:8307而不是utcp://127.0.0.1:8307(注意utcp/tcp错字)作为blackfire.agent_socket

于 2017-03-13T09:43:17.740 回答