Request Details

Route
/search GET
Timestamp
Sep 19, 2026 10:12 AM
Duration
79.76 ms
Status
201
Response Size
43 KB
Error
No

Performance Breakdown

Database
40.0% (4 queries)
View Rendering
9.0%
Application Logic
51.0%
Other Operations
0.0%
Total Operations
8
Slowest Operation
79.76 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 78.1ms 156.3ms 234.4ms 312.5ms

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
posts/show 8 ms 10.0%
posts/show 20 ms 25.1%
home#search 80 ms 100.0%
SELECT * FROM posts WHERE created_at > ? 35 ms 43.9%
SELECT name FROM users 29 ms 36.4%
DELETE FROM comments WHERE created_at < ? 30 ms 37.6%
home#search 80 ms 100.0%
SELECT posts.title, posts.content, users.name FROM posts JOIN users ON posts.user_id = users.id WHERE posts.published = ? 31 ms 38.9%