Request Details

Route
/search GET
Timestamp
Sep 22, 2026 10:48 AM
Duration
79.02 ms
Status
201
Response Size
30 KB
Error
No

Performance Breakdown

Database
51.3% (4 queries)
View Rendering
13.4%
Application Logic
35.3%
Other Operations
0.0%
Total Operations
6
Slowest Operation
79.02 ms

Request Trace

How to read this

Each row is a layer of your stack. Many short Database bars means N+1 queries — fix with includes(). A wide Action bar with little Database time means slow Ruby code. A wide View bar usually means a partial rendered in a loop.

Action
View
Database
Other
Action
View
Database
0.0ms 56.0ms 112.0ms 168.0ms 224.0ms

Operations

How to use this

Sort by Impact to find your biggest wins. Click any row for details and optimisation suggestions. The same SQL appearing multiple times is an N+1 — fix with includes(). A single operation above 50% impact is your highest priority.

Operation Duration Impact Timeline Actions
SELECT id, name FROM users WHERE email = ? 34 ms 43.0%
SELECT * FROM posts WHERE created_at > ? 21 ms 26.6%
SELECT * FROM posts WHERE user_id = ? ORDER BY created_at DESC LIMIT ? 33 ms 41.8%
SELECT posts.title, posts.content, users.name FROM posts JOIN users ON posts.user_id = users.id WHERE posts.published = ? 27 ms 34.2%
home/index 30 ms 38.0%
home#search 79 ms 100.0%