Request Details

Route
/users/:id DELETE
Timestamp
Sep 18, 2026 1:09 AM
Duration
33.75 ms
Status
204
Response Size
14 KB
Error
No

Performance Breakdown

Database
16.3% (2 queries)
View Rendering
36.0%
Application Logic
47.7%
Other Operations
0.0%
Total Operations
7
Slowest Operation
33.75 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 35.4ms 70.7ms 106.1ms 141.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 * FROM users WHERE id = ? 21 ms 62.2%
SELECT * FROM comments WHERE post_id = ? ORDER BY created_at DESC LIMIT ? 2 ms 5.9%
users#destroy 34 ms 100.0%
posts/show 25 ms 74.1%
home/index 21 ms 62.2%
users#destroy 34 ms 100.0%
users/index 5 ms 14.8%