blackfireio / php-sdk

The Blackfire PHP SDK
https://blackfire.io
MIT License
150 stars 22 forks source link

No probe version detected. Fallback probe used? #57

Closed binary-data closed 3 years ago

binary-data commented 3 years ago

Everything was working fine until recently, and I didn't change any backfire settings or the code. Now I only get this:

1 2

I am using the latest version of PHP SDK from Packagist, and I use it like this:

<?php

use Blackfire\Client;
use Blackfire\ClientConfiguration;

$config = new ClientConfiguration('ID', 'TOKEN');

$blackfire = new Client($config);
$probe = $blackfire->createProbe();

register_shutdown_function(function () use ($blackfire, $probe) {
    $blackfire->endProbe($probe);
});

The data reaches blackfire.io since I can see new profiles. But it seems the data is somehow corrupted.

iamluc commented 3 years ago

Hi @binary-data , It means the blackfire PHP extension is not installed or loaded. If you need help to fix that, please contact us at support@blackfire.io.