Request Details

Route
/search GET
Timestamp
Sep 14, 2026 11:33 PM
Duration
180.04 ms
Status
204
Response Size
49 KB
Error
No

Performance Breakdown

Database
50.9% (5 queries)
View Rendering
49.1%
Application Logic
0.0%
Other Operations
0.0%
Total Operations
9
Slowest Operation
35.0 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
View
Database
0.0ms 54.5ms 109.0ms 163.5ms 218.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 * FROM posts WHERE user_id = ? ORDER BY created_at DESC LIMIT ? 20 ms 11.1%
UPDATE posts SET view_count = view_count + ? WHERE published = ? 26 ms 14.4%
SELECT COUNT(*) FROM comments WHERE post_id = ? 32 ms 17.8%
users/index 34 ms 18.9%
posts/show 10 ms 5.6%
home/index 35 ms 19.4%
SELECT name FROM users 1 ms 0.6%
DELETE FROM comments WHERE created_at < ? 32 ms 17.8%
layouts/application 28 ms 15.6%