Request Details

Route
/posts/:id PUT
Timestamp
Sep 09, 2026 8:31 PM
Duration
34.52 ms
Status
201
Response Size
12 KB
Error
No

Performance Breakdown

Database
13.6% (2 queries)
View Rendering
61.6%
Application Logic
24.7%
Other Operations
0.0%
Total Operations
6
Slowest Operation
38.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
Action
View
Database
0.0ms 34.9ms 69.8ms 104.6ms 139.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
SELECT id, name FROM users WHERE email = ? 9 ms 26.1%
posts/show 37 ms 107.2%
SELECT * FROM users WHERE id = ? 10 ms 29.0%
posts/show 11 ms 31.9%
home/index 38 ms 110.1%
posts#update 35 ms 100.0%