Switching the Profiler Storage
Warning: You are browsing the documentation for Symfony 3.x, which is no longer maintained.
Read the updated version of this page for Symfony 7.2 (the current stable version).
In Symfony versions prior to 3.0, profiles could be stored in files, databases, services like Redis and memcache, etc. Starting from Symfony 3.0, the only storage mechanism with built-in support is the filesystem.
By default, the profile stores the collected data in the %kernel.cache_dir%/profiler/
directory. If you want to use another location to store the profiles, define the
dsn
option of the framework.profiler
:
1 2 3 4
# app/config/config.yml
framework:
profiler:
dsn: 'file:/tmp/symfony/profiler'
You can also create your own profile storage service implementing the
ProfilerStorageInterface and
overriding the profiler.storage
service.