Request Details

Route
/posts/:id DELETE
Timestamp
Sep 09, 2026 11:05 AM
Duration
24.54 ms
Status
200
Response Size
22 KB
Error
No

Performance Breakdown

Database
21.7% (2 queries)
View Rendering
35.2%
Application Logic
43.2%
Other Operations
0.0%
Total Operations
7
Slowest Operation
39.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 42.7ms 85.3ms 128.0ms 170.6ms

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#destroy 25 ms 100.0%
home/index 39 ms 158.9%
posts#destroy 25 ms 100.0%
SELECT posts.title, posts.content, users.name FROM posts JOIN users ON posts.user_id = users.id WHERE posts.published = ? 33 ms 134.5%
posts/show 21 ms 85.6%
posts#destroy 25 ms 100.0%
SELECT posts.title, posts.content, users.name FROM posts JOIN users ON posts.user_id = users.id WHERE posts.published = ? 4 ms 16.3%