Request Details

Route
/search GET
Timestamp
Sep 19, 2026 7:02 AM
Duration
111.77 ms
Status
201
Response Size
48 KB
Error
No

Performance Breakdown

Database
28.1% (3 queries)
View Rendering
18.6%
Application Logic
53.3%
Other Operations
0.0%
Total Operations
6
Slowest Operation
111.77 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 52.4ms 104.9ms 157.3ms 209.8ms

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 * FROM comments WHERE post_id = ? ORDER BY created_at DESC LIMIT ? 27 ms 24.2%
SELECT * FROM users LEFT JOIN posts ON users.id = posts.user_id LEFT JOIN comments ON posts.id = comments.post_id LEFT JOIN tags ON posts.id = tags.post_id LEFT JOIN categories ON posts.category_id = categories.id WHERE users.active = ? AND posts.publi... 14 ms 12.5%
SELECT name FROM users 18 ms 16.1%
users/index 24 ms 21.5%
home/index 15 ms 13.4%
home#search 112 ms 100.0%