Request Details

Route
/ GET
Timestamp
Sep 13, 2026 9:34 PM
Duration
151.32 ms
Status
201
Response Size
13 KB
Error
No

Performance Breakdown

Database
9.9% (4 queries)
View Rendering
7.3%
Application Logic
82.9%
Other Operations
0.0%
Total Operations
10
Slowest Operation
151.32 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 182.6ms 365.1ms 547.7ms 730.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
SELECT * FROM posts WHERE user_id = ? ORDER BY created_at DESC LIMIT ? 3 ms 2.0%
SELECT name FROM users 33 ms 21.8%
home#index 151 ms 100.0%
home#index 151 ms 100.0%
home#index 151 ms 100.0%
SELECT * FROM posts WHERE title LIKE ? AND content LIKE ? AND LOWER(title) LIKE ? AND UPPER(content) LIKE ? 25 ms 16.5%
home/index 29 ms 19.2%
home#index 151 ms 100.0%
home/index 24 ms 15.9%
SELECT * FROM users WHERE id = ? 11 ms 7.3%