Request Details

Route
/search GET
Timestamp
Sep 20, 2026 9:22 AM
Duration
132.46 ms
Status
200
Response Size
56 KB
Error
No

Performance Breakdown

Database
4.7% (3 queries)
View Rendering
30.6%
Application Logic
64.7%
Other Operations
0.0%
Total Operations
12
Slowest Operation
132.46 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 153.6ms 307.2ms 460.8ms 614.4ms

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
home/index 30 ms 22.6%
posts/show 29 ms 21.9%
SELECT * FROM posts WHERE user_id = ? ORDER BY created_at DESC LIMIT ? 12 ms 9.1%
layouts/application 26 ms 19.6%
users/index 37 ms 27.9%
home#search 132 ms 100.0%
home#search 132 ms 100.0%
SELECT users.* FROM users LEFT JOIN posts ON users.id = posts.user_id LEFT JOIN comments ON posts.id = comments.post_id WHERE users.active = ? AND posts.published = ? AND comments.approved = ? OR users.created_at > ? AND posts.created_at > ? AND commen... 16 ms 12.1%
home/index 27 ms 20.4%
UPDATE posts SET view_count = view_count + ? WHERE published = ? 1 ms 0.8%
layouts/application 39 ms 29.4%
home#search 132 ms 100.0%