Spiral: Profiler and Debug Panel
Make sure that your server is configured with following PHP version and extensions:
To install the package:
composer require spiral/profiler
After package install you need to add bootloader from the package in your application.
use Spiral\RoadRunnerBridge\Bootloader as RoadRunnerBridge;
protected const LOAD = [
// ...
Spiral\Profiler\ProfilerBootloader::class,
// ...
];
Define env variables:
PROFILER_ENABLE=true
PROFILER_ENDPOINT=http://127.0.0.1:8080/api/profiler/store
PROFILER_APP_NAME="My super app"
PROFILER_MIDDLEWARE_DEFAULT_ENABLED=true
There are two ways to use profiler:
Interceptor will be useful if you want to profile some specific part of your application which supports using interceptors.
namespace App\Bootloader;
use App\Interceptor\CustomInterceptor;
use Spiral\Bootloader\DomainBootloader;
use Spiral\Core\CoreInterface;
class AppBootloader extends DomainBootloader
{
protected const SINGLETONS = [
CoreInterface::class => [self::class, 'domainCore']
];
protected const INTERCEPTORS = [
\Spiral\Profiler\ProfilerInterceptor::class
];
}
Read more about interceptors here.
To use profiler as a middleware you need to add it to your router.
namespace App\Bootloader;
use Spiral\Bootloader\Http\RoutesBootloader as BaseRoutesBootloader;
use Spiral\Profiler\ProfilerMiddleware;
final class RoutesBootloader extends BaseRoutesBootloader
{
protected function globalMiddleware(): array
{
return [
ProfilerMiddleware::class, // <================
LocaleSelector::class,
ErrorHandlerMiddleware::class,
JsonPayloadMiddleware::class,
HttpCollector::class,
];
}
// ...
}
namespace App\Bootloader;
use Spiral\Bootloader\Http\RoutesBootloader as BaseRoutesBootloader;
use Spiral\Profiler\ProfilerMiddleware;
final class RoutesBootloader extends BaseRoutesBootloader
{
// ...
protected function middlewareGroups(): array
{
return [
'web' => [
CookiesMiddleware::class,
SessionMiddleware::class,
CsrfMiddleware::class,
],
'profiler' => [ // <================
ProfilerMiddleware::class,
'middleware:web',
],
];
}
// ...
}
class HomeController implements SingletonInterface
{
#[Route(route: '/', name: 'index.page', methods: ['GET'], middleware: 'profiler')]
public function index(...): void
{
// ...
}
#[Route(route: '/', name: 'index.page', methods: ['GET'], middleware: \Spiral\Profiler\ProfilerMiddleware::class)]
public function index(...): void
{
// ...
}
}
By default, middleware start profiling on every request. Н
You can configure profiling to be enabled only for certain requests.
PROFILER_MIDDLEWARE_DEFAULT_ENABLED=false
X-Spiral-Profiler-Enable=1
for request you want to profile.