magepsycho / magento2-profiler
Tabular profiler output type for API & CLI request profiling
Package info
github.com/MagePsycho/magento2-profiler
Type:magento2-module
pkg:composer/magepsycho/magento2-profiler
README
Magento 2 Enhanced Profiler
Overview
Magento 2 Enhanced Profiler adds a tabular and a json profiler output type to Magento 2 — a third and fourth option next to the built-in html and csvfile.
It profiles all three request types from one switch: storefront and admin web requests, REST and GraphQL API requests, and CLI commands. The last two stock Magento cannot profile at all — html writes into the response body, which is useless for JSON endpoints and impossible for a console command. On web requests this writes to a log file instead of appending a table to the page.
No core file is patched: activation happens in bootstrap.php, before the ObjectManager exists, which is the only moment early enough to catch the whole request.
[2026-08-04 02:07:35] pid=68 sapi=fpm-fcgi GET /rest/V1/directory/currency
Timers: 19 | Calls: 21 | Root time: 73.567 ms | Peak real: 11.96 MB | Peak emalloc: 10.66 MB
+-------------------------------------------------------+-----+-----------+----------+--------------+--------------+------+
| Timer Id | Cnt | Time (ms) | Avg (ms) | Emalloc (KB) | RealMem (KB) | % |
+-------------------------------------------------------+-----+-----------+----------+--------------+--------------+------+
| cache_frontend_create | 2 | 3.772 | 1.886 | 20.43 | 0.00 | 5.1 |
| magento | 1 | 69.795 | 69.795 | 4277.05 | 2048.00 | 94.9 |
| |- store.resolve | 1 | 10.267 | 10.267 | 73.98 | 0.00 | 14.0 |
| |- locale/currency | 2 | 2.638 | 1.319 | 22.00 | 0.00 | 3.6 |
| | |- EVENT:currency_display_options_forming | 1 | 1.100 | 1.100 | 19.13 | 0.00 | 1.5 |
| | | |- OBSERVER:magento_currencysymbol_currency... | 1 | 1.021 | 1.021 | 9.77 | 0.00 | 1.4 |
| |- EVENT:controller_front_send_response_before | 1 | 3.941 | 3.941 | 23.90 | 0.00 | 5.4 |
+-------------------------------------------------------+-----+-----------+----------+--------------+--------------+------+
Demo
tabular output on a CLI command:
Key Features
- Profiles CLI commands and REST / GraphQL API requests — neither of which stock Magento can profile at all
- Two output types that can run together:
tabular(ASCII log) andjson/timeline(structured per-run files) - Captures aggregate rows and per-call spans, so a timeline is available without deciding before the run
- SQL query profiling on by default, with a per-table breakdown of every query
- OpenSearch profiling per operation and index, covering the reindex path the search adapter never sees
- Times DB, search, HTTP clients and the gateway transport, GraphQL resolvers, Web API, indexers, mview, session handler, cache frontend, individual Redis commands, lock waits, image manipulation, mail sending, message queues and console commands
- Thresholds default to zero — core's
htmloutput hides everything under 1ms / 10 calls / 10KB, which drops most of an API request - Filter noise by minimum duration or by PCRE on the timer id
- Log output is confined to
var/log/and forced to a.logextension, so a report can never land somewhere web-served or executable - Cookie activation is gated behind developer mode or a shared secret
Benchmarkhelper for instrumenting your own code in a few lines- Companion MagePsycho_ProfilerUi renders the reports in the admin
Feature Highlights
What Stock Magento Cannot Do
| Stock profiler | This extension |
|---|---|
html appends a table to the response body — unusable for JSON endpoints |
Writes to a log file or STDERR, never to the response |
| CLI commands cannot be profiled | MAGE_PROFILER=tabular bin/magento <command> prints the table after the run |
| REST / GraphQL cannot be profiled | Same switch, same table, per request |
| Thresholds hide anything under 1ms / 10 calls / 10KB | Thresholds default to zero; opt into filtering when you want it |
| No SQL visibility | Every query timed, grouped by operation and table |
| No structured output | One JSON file per run, with per-call spans |
Output Types
Run either, or both together as MAGE_PROFILER=tabular,json:
| Type | Writes | Use |
|---|---|---|
tabular |
ASCII table appended to var/log/profiler_tabular.log |
Reading in a terminal; STDERR on CLI |
json (= timeline) |
one structured file per run in var/log/profiler/ |
The admin viewer, CI diffing, tooling |
json and timeline are two names for the same capture — aggregate rows and per-call spans. Set MAGE_PROFILER_MAX_SPANS=0 for an aggregate-only file.
Turning It On
Three ways, in order of scope:
# 1. one CLI command (Docker: -e goes before the container name) MAGE_PROFILER=tabular bin/magento indexer:reindex catalog_product_price # 2. one browser session or API client — cookie # MAGE_PROFILER=tabular (developer mode, or tabular:<secret> otherwise) # 3. everything, until switched off — flag file at var/profiler.flag bin/magento magepsycho:profiler:enable bin/magento magepsycho:profiler:status bin/magento magepsycho:profiler:disable
For REST / GraphQL requests from an API client such as Postman, send the cookie as a plain request header:
Cookie: MAGE_PROFILER=tabular
The cookie is honoured only in developer mode. Anywhere else it must carry the shared secret — set MAGE_PROFILER_SECRET in the PHP environment and append it after the last output type:
Cookie: MAGE_PROFILER=tabular:<secret> Cookie: MAGE_PROFILER=tabular,json:<secret>
Store configuration cannot switch profiling on: activation happens during bootstrap, long before store config is readable. The admin settings control the output only.
SQL Query Profiling
Every query is timed and grouped, so a slow reindex shows which tables it is spending its time in rather than one opaque total.
# which tables dominate a reindex? MAGE_PROFILER=tabular MAGE_PROFILER_FILTER='/^SQL/' bin/magento indexer:reindex # operation mix only, no per-table breakdown MAGE_PROFILER=tabular MAGE_PROFILER_SQL=operation bin/magento indexer:reindex # off, without touching the rest of the profiler MAGE_PROFILER=tabular MAGE_PROFILER_SQL=0 bin/magento indexer:reindex
Capturing The Statement Itself
MAGE_PROFILER_SQL=query records the statement and its bind params onto every SQL span, and the
admin viewer turns a SQL: row into a click that shows them, syntax-highlighted. Without it the
report tells you SQL:SELECT (catalog_product_entity +3) cost 157 ms but never which query that was.
MAGE_PROFILER=json MAGE_PROFILER_SQL=query bin/magento indexer:reindex
For a single storefront request, set it as a second cookie next to MAGE_PROFILER — area flags
are otherwise read from the environment only, which would turn capture on for every request the
container serves:
Cookie: MAGE_PROFILER=json
Cookie: MAGE_PROFILER_SQL=query
Cookie-supplied flags are honoured under exactly the gate that guards cookie activation itself:
developer mode, or a matching MAGE_PROFILER_SECRET. Activating by environment variable does not
open the door — otherwise a passing visitor could upgrade an operator's run to capture statements.
The modes are mutually exclusive. operation exists to shed detail and query to gather it, so
there is no operation,query; use MAGE_PROFILER_MAX_DETAIL if you want shorter ids while capturing.
| Variable | Default | Meaning |
|---|---|---|
MAGE_PROFILER_SQL_MAXLEN |
1000 |
Longest captured statement, cut at the tail with .... A storefront SELECT with a few joins is 400-900 bytes |
MAGE_PROFILER_SQL_BUDGET |
1048576 |
Total captured bytes per request. Once spent, later spans carry no statement and the CPU cost stops too |
meta.sql_captured in the report counts the spans that carried a statement, so a run that hit the
budget is distinguishable from one recorded with capture off.
Two things worth knowing before turning it on:
- Pair it with a shorter retention. 1 MiB per report against the default
MAGE_PROFILER_KEEP=100is ~130 MB invar/log/profiler.MAGE_PROFILER_KEEP=10is a sensible companion. MAGE_PROFILER_MAX_SPANS=0captures nothing, because the statement lives on the span. The reverse is a nice property though: once the per-prefix id cap collapses ids intoSQL:<overflow>, the aggregate row is useless but the per-span statement is not.
full is reserved for a later release: the same capture plus the call stack that issued the query.
Search Engine Profiling
Two layers. SEARCH: times the search adapter, so a storefront request shows which container was queried. OPENSEARCH: times the OpenSearch client underneath it — which index, which operation, how big the indexing batches were. The write path never goes through the adapter, so without the second layer a catalogsearch_fulltext reindex looks like pure SQL:
CLI:indexer:reindex
|- INDEXER:catalogsearch_fulltext::reindexAll
|- OPENSEARCH:indexExists (magento2_product_1_v*)
|- OPENSEARCH:createIndex (magento2_product_1_v*)
|- OPENSEARCH:addFieldsMapping (magento2_product_1_v*)
|- OPENSEARCH:bulkQuery (magento2_product_1_v* x100) Cnt 12
|- OPENSEARCH:updateAlias (magento2_product_1)
|- OPENSEARCH:deleteIndex (magento2_product_1_v*)
magento
|- SEARCH:SearchAdapter\Adapter (quick_search_container)
|- OPENSEARCH:query (magento2_product_1)
Reads report the alias; writes target a physical index whose version increments on every full reindex, so magento2_product_1_v37 is folded to magento2_product_1_v* — otherwise each run would add a permanent new row and eat into the per-prefix id cap. Bulk batches carry their size snapped to a power of ten (x100, x1k), which keeps the id count small while making batch cost readable straight off the Cnt / Time / Avg columns. A response that timed out, lost a shard, or reported bulk errors opens a nested zero-duration OPENSEARCH:query:degraded / OPENSEARCH:bulkQuery:errors marker, whose Cnt is the failure count.
# what does a catalogsearch reindex actually spend its time on? MAGE_PROFILER=tabular MAGE_PROFILER_FILTER='/SEARCH/' bin/magento indexer:reindex catalogsearch_fulltext # operations only, no index names MAGE_PROFILER=tabular MAGE_PROFILER_SEARCH=operation bin/magento indexer:reindex # both search layers off MAGE_PROFILER=tabular MAGE_PROFILER_SEARCH=0 bin/magento indexer:reindex
Cache And Redis Profiling
Cache rows are named after the backend doing the work — REDIS:load, FILE:save, DATABASE:clean — so a profile says which store the time went to without a second column. On Redis the client itself is instrumented too, and every command gets its own row:
REDIS:save (ADMINHTML) Cnt 32 132.206 ms
|- REDIS:MGET (ADMINHTML) Cnt 32 1.133 ms
|- REDIS:MULTI Cnt 15 0.031 ms
|- REDIS:SETEX (ADMINHTML) Cnt 4 0.427 ms
|- REDIS:SADD (CACHE_ALL_IDS) Cnt 71 0.068 ms
|- REDIS:EXEC Cnt 15 0.398 ms
REDIS:load (CUSTOM_BLOCK) Cnt 19 0.948 ms
|- REDIS:MGET (CUSTOM_BLOCK) Cnt 19 0.571 ms
The parenthesised part is the key family, not the key: CUSTOM_BLOCK_0D87A5… becomes CUSTOM_BLOCK, CAT_P_828 becomes CAT_P, a bare hash becomes <hash>, and a multi-key command adds a count — MGET (CAT_P +4). Leading tokens are kept until the first entity id or hash, three at most.
That reduction is not decoration. Magento's cache ids are per-entity, so putting them in a timer id would give one row per product and per block on a single page — a report nobody can read, a per-prefix cardinality cap exhausted in one request, and customer- and URL-derived identifiers written into a log file that outlives it. The family answers the question you actually have (which kind of key is costing me) and stays at a few dozen values.
When you are chasing one specific key, MAGE_PROFILER_REDIS=keys puts the whole id back — REDIS:load (global|primary|plugin-list) — with all the cardinality and disclosure that implies. Pair it with MAGE_PROFILER_FILTER and treat the log as sensitive.
Operations are lowercase, commands uppercase, and commands nest under the operation that issued them. That split answers the question the frontend row alone cannot: in the run above, 132ms of save contains under 3ms of actual Redis traffic — the rest is serialization and tag bookkeeping in PHP, which is a very different fix from "Redis is slow".
Tag traffic (SADD, SREM, SUNION, SINTER) is included, and some of it fires outside any load/save window — deferred writes are committed on shutdown — so a few command rows legitimately have no cache-operation parent.
Switch it off with MAGE_PROFILER_REDIS=0; MAGE_PROFILER_CACHE=0 drops the frontend rows as well.
One core quirk worth knowing, because it is visible in every 2.4.9 profile: App\Cache\Frontend\Factory applies its decorator list twice — once inside createSymfonyCache() (Factory.php:595) and again in create() (:196) — so every configured cache decorator is built wrapping itself. Magento's own Decorator\Profiler shows the symptom as cache_load nested inside cache_load. This module detects the duplicate and makes the outer instance a pass-through, so cache operations are reported once, by the instance closest to the backend.
Two things to know before reading the numbers:
- Time overlaps between the layers.
REDIS:MGETruns insideREDIS:load, so the same milliseconds appear in both rows and the%column can sum past 100. That is ordinary inclusive-time behaviour — the Self column in the admin viewer is what separates them. - Volume. A cache-cold page can issue hundreds of commands, and each one is a span. With the default
MAGE_PROFILER_MAX_SPANS=5000a Redis-heavy request will hit the cap and the Timeline will truncate; raise the cap or setMAGE_PROFILER_REDIS=0when you are profiling something else.
Only the cache client is instrumented. Session Redis traffic goes through a Credis client that Magento constructs with no injection point of any kind, so it stays behind the single SESSION:read / SESSION:write timers.
The Quiet Costs
Five subsystems that spend real time and report none of it anywhere else.
HTTP:POST (gateway.example.com) 1 842.106 ms <- payment gateway, via the Zend transport
LOCK:lock (CUSTOM_BLOCK) 2 3.506 ms <- queued behind another process
FPC:load 1 8.916 ms
|- FPC:load:miss 1 0.007 ms <- Cnt is the hit/miss count
IMAGE:open (Gd2) 1 80.448 ms
IMAGE:resize (Gd2) 1 14.218 ms
MAIL:send (Model\Transport) 1 311.400 ms <- inside the request that placed the order
QUEUE:publish (product_action_attribute.update)
QUEUE:consume (Consumer)
| Area | What it covers | Env |
|---|---|---|
HTTP: |
Every outbound path: HTTP\ClientInterface (curl and socket, plus third-party clients implementing it), AsyncClientInterface, HTTP\Adapter\Curl, and LaminasClient::send() — the last is what PayPal Payflow, USPS, DHL and the currency imports actually use, and it reaches neither of the other two, so the slowest call in a checkout used to be invisible |
MAGE_PROFILER_HTTP |
LOCK: |
LockManagerInterface. A lock wait is dead time: no query, no cache call, just a request queued behind another process — the usual reason a page is fast alone and slow under load |
MAGE_PROFILER_LOCK |
FPC: |
Magento's built-in full page cache, with the hit or miss recorded as a nested marker. Silent behind Varnish, which is itself worth knowing | MAGE_PROFILER_FPC |
IMAGE: |
GD / ImageMagick work. The first uncached view of a category page generates every thumbnail it shows | MAGE_PROFILER_IMAGE |
MAIL: |
TransportInterface::sendMessage. Transactional mail is sent synchronously, so a slow relay is charged to the customer |
MAGE_PROFILER_MAIL |
QUEUE: |
Publishing and consuming. Consumers are long-running CLI processes — the workload most worth profiling, and the one whose SQL previously had nothing to attribute it to | MAGE_PROFILER_QUEUE |
Details stay bounded the same way everywhere: hosts without query strings, adapters rather than file paths, transports rather than recipients, and lock names through the cache-key family reduction — Magento locks per cache entry and per price context, so the raw names are per-entity.
Timeline And The Admin Viewer
The json output writes one file per run into var/log/profiler/, indexed by index.jsonl so a run picker can be built without opening every report.
Install the companion MagePsycho_ProfilerUi for an admin page at System → Tools → Enhanced Profiler Reports: a collapsible tree, a sortable and filterable table with the Self column heat-shaded, and a timeline of every call. It only reads what this module writes and adds nothing to the recording side, so it can be left uninstalled in production.
The same run, read in the browser instead of the log — this is what you get once MagePsycho_ProfilerUi is installed:
composer require magepsycho/magento2-profiler-ui
Instrument Your Own Code
use MagePsycho\Profiler\Util\Benchmark; Benchmark::start('my.expensive.thing'); // ... Benchmark::stop('my.expensive.thing');
Timers nest automatically and appear in both outputs alongside the framework's own.
🛠️ Installation
1 Using Composer (Preferred)
composer require magepsycho/magento2-profiler
2 Using Modman
modman init
modman clone git@github.com:MagePsycho/magento2-profiler.git
3 Using Zip File
- Download the Extension Zip File
- Extract & upload the files to
/path/to/magento2/app/code/MagePsycho/Profiler/
After installation by either means, activate the extension with following steps
- Enable the module
php bin/magento module:enable MagePsycho_Profiler --clear-static-content
php bin/magento setup:upgrade
- Flush the store cache
php bin/magento cache:flush
- Deploy static content - in Production mode only
rm -rf pub/static/* var/view_preprocessed/*
php bin/magento setup:static-content:deploy
- Profile something
MAGE_PROFILER=tabular php bin/magento cache:clean
tail -f var/log/profiler_tabular.log
The extension creates no tables of its own.
Configuration
Stores > Configuration > MagePsycho > Enhanced Profiler > General Settings
These control the output only — they cannot switch profiling on. Environment variables win over admin config.
| Setting | Env override | Default |
|---|---|---|
| Write Output | — | Yes |
| Log File Path (relative to Magento root) | MAGE_PROFILER_LOG |
var/log/profiler_tabular.log |
| Minimum Timer Duration (ms) | MAGE_PROFILER_MIN_MS |
0 — show everything |
| Timer Id Filter (PCRE) | MAGE_PROFILER_FILTER |
none |
| Print To STDERR On CLI | MAGE_PROFILER_CLI_STDERR |
Yes |
Instrumentation itself is environment-only: MAGE_PROFILER_SQL (0 off, operation for no table names, query to capture the statement), MAGE_PROFILER_REDIS, MAGE_PROFILER_LOCK, MAGE_PROFILER_FPC, MAGE_PROFILER_MAIL, MAGE_PROFILER_IMAGE, MAGE_PROFILER_QUEUE, MAGE_PROFILER_SEARCH (0 off, operation for no index names), MAGE_PROFILER_SQL_MAXLEN, MAGE_PROFILER_SQL_BUDGET, MAGE_PROFILER_MAX_DETAIL, MAGE_PROFILER_MAX_IDS, MAGE_PROFILER_MAX_SPANS, MAGE_PROFILER_REPORT_DIR, MAGE_PROFILER_KEEP_DAYS, MAGE_PROFILER_KEEP_QUERY.
Security
MAGE_PROFILER_SQL=query writes the statement and its bound values into the report. Those values
routinely include customer data - email addresses, names, tokens. No redaction is attempted, because
positional binds carry no column name and any heuristic would be theatre. Treat a report recorded
with capture on exactly as you would treat a query log: it is off by default, the admin viewer is
behind its own ACL resource, and var/log/profiler should not be world-readable.
Cookie activation lets an unauthenticated visitor make the server write to disk and expose internal timing. It is therefore honoured only when:
MAGE_MODEisdeveloper, or- the cookie carries the shared secret —
MAGE_PROFILER=tabular:<secret>matching theMAGE_PROFILER_SECRETenvironment variable (compared withhash_equals)
Otherwise the cookie is ignored outright. MAGE_PROFILER env-var and var/profiler.flag activation are ungated — both already require server-side access.
The report path is always confined to var/log/ and always written with a .log extension: traversal segments are dropped and anything outside is folded back in, so a mistyped or hostile path cannot put the report somewhere web-served or executable. Request query strings are stripped from the report label by default, since API calls routinely carry tokens in them (MAGE_PROFILER_KEEP_QUERY=1 to keep them).
Production checklist: leave MAGE_PROFILER_SECRET unset unless actively profiling, never leave var/profiler.flag behind, and rotate var/log/profiler_tabular.log — it appends forever and has no rotation of its own. bin/magento magepsycho:profiler:status prints the current gate state.
Developer Notes
Activation runs before the ObjectManager
bootstrap.php is included by Composer's files autoload, which is why it can arm the profiler before Magento starts. That file therefore cannot use DI, the request abstractions or the store config — superglobals and filesystem functions are the only option, and the sniff exclusions in it are deliberate.
What gets instrumented
Plugins wrap Magento\Framework\DB\Adapter\Pdo\Mysql, Magento\Framework\Search\AdapterInterface, Magento\OpenSearch\Model\SearchClient, Magento\Framework\HTTP\Client\Curl, Magento\Framework\HTTP\AsyncClientInterface, the GraphQL query processor and resolvers, the Web API request and output processors, Magento\Indexer\Model\Indexer, Magento\Framework\Mview\ActionInterface, Magento\Framework\Session\SaveHandler, Magento\Framework\App\Cache\Frontend\Factory and Symfony\Component\Console\Command\Command.
Static analysis
vendor/bin/phpstan analyse -c app/code/MagePsycho/Profiler/phpstan.neon --memory-limit=1G vendor/bin/phpcs --standard=Magento2 --extensions=php,phtml app/code/MagePsycho/Profiler/
Unit tests live in Test/Unit and cover the tabular renderer, the timer id builder, the SQL plugin, the OpenSearch client plugin and the benchmark helper.
Changelog
Version 1.0.3 (2026-08-18)
MAGE_PROFILER_SQL=querycaptures the statement and its bind params onto every SQL span, for the admin viewer to show on click. Opt-in, bounded byMAGE_PROFILER_SQL_MAXLENandMAGE_PROFILER_SQL_BUDGET, and skipped entirely when no timeline driver is recording - atabularrun pays nothing.- Area flags may now be supplied as cookies, so one request can be recorded with capture on without setting a container-wide variable. Gated on developer mode or a matching
MAGE_PROFILER_SECRET, never on environment activation alone. - First unit tests for the Timeline driver, covering the span payload, the sparse
meta.sql_capturedcounter, and the guarantee that aggregated rows never carry query text. - Outbound HTTP coverage extended to
LaminasClient, which was recorded nowhere: PayPal Payflow, USPS, DHL, the currency imports and the Zend payment gateway client all reach the network through it. The curl declaration now targetsHTTP\ClientInterface, soClient\Socketand third-party clients are covered too.
Version 1.0.2 (2026-08-12)
- Redis cache profiling: per-command timers (
REDIS:MGET,REDIS:SETEX,REDIS:EXEC, …) below the cache operation that issued them. - Cache rows are now prefixed with the backend name —
REDIS:loadinstead ofCACHE:load (Redis). - Cache, Redis and lock details carry the key family —
REDIS:load (CUSTOM_BLOCK)— withMAGE_PROFILER_REDIS=keysfor the raw key. - New areas: outbound gateway calls via the Zend curl transport, lock waits, built-in FPC hit/miss, image manipulation, mail sending, and message queue publish/consume.
- Fix: a derived table (
FROM (SELECT …) AS main_table) stringified the whole subquery into the timer id, giving one row per bound parameter set and writing query text into the log. It now reports the alias, or<subquery>. - Fix:
Cache\Frontend\Factoryapplies its decorator list twice on 2.4.9, so every cache operation was timed twice, nested inside itself. The outer instance now passes through. - Tests migrated to PHPUnit attributes where the doc-block data providers had silently stopped running under PHPUnit 12.
Version 1.0.1 (2026-08-11)
- OpenSearch client profiling: per-operation, per-index timers covering the search and the reindex path, with versioned index names folded and bulk batch sizes bucketed.
- Unit coverage for the curl client plugin.
Version 1.0.0 (2026-08-08)
- Initial Release.
Authors
Contributors
To Contribute
Any contribution to the development of Magento 2 Enhanced Profiler is highly welcome.
The best possibility to provide any code is to open a pull request on GitHub.
Need Support?
If you encounter any problems or bugs, please create an issue on GitHub.
Please visit our store for more FREE / paid extensions OR contact us for customization / development services.


