Reading https://blackfire.io/docs/reference-guide/php-sdk I see that
The $probe instance can also be used to instrument precisely only part of your code
But
<?php
require __DIR__.'/vendor/autoload.php';
$blackfire = new \Blackfire\Client();
spl_autoload_call('\SendinBlue\Base32');
$probe = $blackfire->createProbe(null, false);
$probe->enable();
\SendinBlue\Base32::decode(\SendinBlue\Base32::encode('Test'));
$probe->disable();
$blackfire->endProbe($probe);
get me the following graph:
But I only wanted to benchmark
\SendinBlue\Base32::decode(\SendinBlue\Base32::encode('Test'));
How could I do this?