Understanding database query performance requires analyzing execution plans generated by `EXPLAIN (ANALYZE, FORMAT JSON)` in PostgreSQL or `EXPLAIN FORMAT=JSON` in MySQL. Raw EXPLAIN JSON outputs are often hundreds of lines long and difficult to parse manually. This visualizer transforms raw plan JSON into an interactive node cost tree with time percentage bars and automated bottleneck detection alerts (such as Sequential Scans, Disk Temporary Spills, and high Filter Discard ratios).
Execution plan parsing and node tree calculations run 100% locally in your browser memory.