1
所以我跟着these instructions爲我的流浪箱子,一切似乎都很好,我的意思是它的運行。它已經配置了其服務器標識和服務器令牌。黑火分析不起作用
然後我按照同一頁面上的說明安裝了PHP探針,並在完成後重新啓動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.
所以據我知道我做的一切權利。然後,在我的控制檯我所做的:
[email protected]:/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.
呃....好吧所以文檔的狀態,如果出現錯誤檢查日誌:
[email protected]:/var/www$ cat /var/log/blackfire/agent.log
[email protected]:/var/www$
在日誌theres沒什麼....
我在做什麼錯?
我已經看到你在GitHub上爲此創建的問題,並且建議直接與他們聯繫。如果這裏存在一個普遍問題或疑難問題,可否請您分享您所做的工作以解決您的問題?這可以幫助其他人解決同樣的問題(像我一樣)。謝謝 – mkilmanas