Request Details

Route
/posts/:id DELETE
Timestamp
Sep 10, 2026 6:51 AM
Duration
191.5 ms
Status
201
Response Size
15 KB
Error
No

Performance Breakdown

Database
29.0% (5 queries)
View Rendering
10.7%
Application Logic
60.3%
Other Operations
0.0%
Total Operations
8
Slowest Operation
191.5 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 79.4ms 158.7ms 238.1ms 317.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 name FROM users 10 ms 5.2%
SELECT posts.title, posts.content, users.name FROM posts JOIN users ON posts.user_id = users.id WHERE posts.published = ? 12 ms 6.3%
posts#destroy 191 ms 100.0%
layouts/application 20 ms 10.4%
DELETE FROM posts WHERE id = ? 29 ms 15.1%
home/index 14 ms 7.3%
SELECT name FROM users 9 ms 4.7%
INSERT INTO posts (user_id, title, content, published, created_at, updated_at) VALUES (?, ?, ?, ?, ?, ?) 32 ms 16.7%