Request Details

Route
/users/:id DELETE
Timestamp
Sep 22, 2026 11:31 AM
Duration
42.96 ms
Status
204
Response Size
10 KB
Error
No

Performance Breakdown

Database
16.4% (2 queries)
View Rendering
64.6%
Application Logic
19.0%
Other Operations
0.0%
Total Operations
8
Slowest Operation
42.96 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 56.5ms 113.0ms 169.5ms 226.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
layouts/application 29 ms 67.5%
SELECT * FROM posts WHERE title LIKE ? AND content LIKE ? AND LOWER(title) LIKE ? AND UPPER(content) LIKE ? 18 ms 41.9%
posts/show 40 ms 93.1%
users/index 37 ms 86.1%
home/index 6 ms 14.0%
SELECT * FROM posts WHERE user_id = ? ORDER BY created_at DESC LIMIT ? 19 ms 44.2%
users#destroy 43 ms 100.0%
layouts/application 34 ms 79.2%