Request Details

Route
/posts/:id GET
Timestamp
Sep 22, 2026 9:47 PM
Duration
37.27 ms
Status
200
Response Size
9.7 KB
Error
No

Performance Breakdown

Database
21.7% (3 queries)
View Rendering
15.9%
Application Logic
62.4%
Other Operations
0.0%
Total Operations
6
Slowest Operation
37.27 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 29.9ms 59.8ms 89.7ms 119.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
posts#show 37 ms 100.0%
SELECT * FROM posts WHERE title LIKE ? AND content LIKE ? AND LOWER(title) LIKE ? AND UPPER(content) LIKE ? 8 ms 21.5%
SELECT posts.* FROM posts WHERE title LIKE ? OR content LIKE ? 2 ms 5.4%
SELECT name FROM users 16 ms 42.9%
layouts/application 19 ms 51.0%
posts#show 37 ms 100.0%