所以我按照这些说明为我的流浪者盒子,一切似乎都很好,我的意思是它正在运行。它已使用其服务器 ID 和服务器令牌进行配置。
然后,我按照同一页面上的说明安装了 PHP Probe,并在完成后重新启动了 apache2。然后我做了composer require
blackfire/php-sdk
,最后在我的代码中我做了:
$probe = $blackfire->createProbe();
// some PHP code you want to profile
$blackfire->endProbe($probe);
dd('End here.'); // Laravels die and dump function.
据我所知,我做的一切都是正确的。然后,在我的控制台中,我做了:
vagrant@scotchbox:/var/www$ php artisan fetch_eve_online_region_type_history_information
[Blackfire\Exception\ApiException]
401: while calling GET https://blackfire.io/api/v1/collab-tokens [context: NULL] [headers: array (
0 => 'Authorization: Basic xxxxxx=',
1 => 'X-Blackfire-User-Agent: Blackfire PHP SDK/1.0',
)]
// where xxxx is some kind of authentication token that looks different from what I gave as my server id and token.
呃....好的,所以文档说明如果出现问题,请检查日志:
vagrant@scotchbox:/var/www$ cat /var/log/blackfire/agent.log
vagrant@scotchbox:/var/www$
日志里什么都没有......
我究竟做错了什么?