Request Details

Route
/posts/:id DELETE
Timestamp
Sep 22, 2026 11:18 PM
Duration
34.52 ms
Status
204
Response Size
3.6 KB
Error
No

Performance Breakdown

Database
23.2% (3 queries)
View Rendering
25.7%
Application Logic
51.1%
Other Operations
0.0%
Total Operations
8
Slowest Operation
34.52 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 50.6ms 101.3ms 151.9ms 202.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
SELECT id, name FROM users WHERE email = ? 8 ms 23.2%
posts#destroy 35 ms 100.0%
SELECT id, name FROM users WHERE email = ? 5 ms 14.5%
SELECT * FROM comments WHERE post_id = ? ORDER BY created_at DESC LIMIT ? 34 ms 98.5%
home/index 31 ms 89.8%
posts#destroy 35 ms 100.0%
layouts/application 21 ms 60.8%
posts#destroy 35 ms 100.0%