Request Details

Route
/admin/dashboard GET
Timestamp
Sep 09, 2026 8:10 AM
Duration
76.2 ms
Status
200
Response Size
13 KB
Error
No

Performance Breakdown

Database
22.6% (3 queries)
View Rendering
44.8%
Application Logic
32.5%
Other Operations
0.0%
Total Operations
8
Slowest Operation
76.2 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 58.6ms 117.1ms 175.7ms 234.2ms

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 posts.* FROM posts WHERE title LIKE ? OR content LIKE ? 2 ms 2.6%
SELECT * FROM posts WHERE created_at > ? 28 ms 36.7%
layouts/application 35 ms 45.9%
home/index 19 ms 24.9%
admin/dashboard#index 76 ms 100.0%
layouts/application 14 ms 18.4%
SELECT * FROM posts WHERE title LIKE ? AND content LIKE ? AND LOWER(title) LIKE ? AND UPPER(content) LIKE ? 23 ms 30.2%
posts/show 37 ms 48.6%