Request Details

Route
/ GET
Timestamp
Sep 12, 2026 12:05 AM
Duration
78.57 ms
Status
204
Response Size
21 KB
Error
No

Performance Breakdown

Database
17.3% (5 queries)
View Rendering
11.0%
Application Logic
71.7%
Other Operations
0.0%
Total Operations
14
Slowest Operation
78.57 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 137.0ms 273.9ms 410.9ms 547.9ms

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
home#index 79 ms 100.0%
SELECT * FROM posts WHERE title LIKE ? AND content LIKE ? AND LOWER(title) LIKE ? AND UPPER(content) LIKE ? 28 ms 35.6%
home/index 15 ms 19.1%
SELECT * FROM posts WHERE user_id = ? ORDER BY created_at DESC LIMIT ? 12 ms 15.3%
SELECT * FROM posts WHERE title LIKE ? AND content LIKE ? AND LOWER(title) LIKE ? AND UPPER(content) LIKE ? 33 ms 42.0%
SELECT * FROM users WHERE id = ? 6 ms 7.6%
SELECT id, name, email FROM users WHERE id = ? 16 ms 20.4%
home#index 79 ms 100.0%
home#index 79 ms 100.0%
home#index 79 ms 100.0%
users/index 28 ms 35.6%
layouts/application 10 ms 12.7%
home#index 79 ms 100.0%
posts/show 7 ms 8.9%