Request Details

Route
/ GET
Timestamp
Sep 16, 2026 8:39 PM
Duration
98.75 ms
Status
204
Response Size
20 KB
Error
No

Performance Breakdown

Database
20.8% (6 queries)
View Rendering
10.8%
Application Logic
68.4%
Other Operations
0.0%
Total Operations
11
Slowest Operation
98.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 108.3ms 216.6ms 324.9ms 433.3ms

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
DELETE FROM posts WHERE id = ? 12 ms 12.2%
SELECT name FROM users 8 ms 8.1%
home/index 30 ms 30.4%
SELECT COUNT(*) FROM comments WHERE post_id = ? 14 ms 14.2%
home#index 99 ms 100.0%
SELECT * FROM posts WHERE created_at > ? 20 ms 20.3%
home#index 99 ms 100.0%
SELECT * FROM posts WHERE title LIKE ? AND content LIKE ? AND LOWER(title) LIKE ? AND UPPER(content) LIKE ? 1 ms 1.0%
home#index 99 ms 100.0%
SELECT name FROM users 35 ms 35.4%
posts/show 17 ms 17.2%