Request Details

Route
/users POST
Timestamp
Sep 23, 2026 7:55 PM
Duration
76.36 ms
Status
200
Response Size
5.8 KB
Error
No

Performance Breakdown

Database
36.0% (4 queries)
View Rendering
15.8%
Application Logic
48.2%
Other Operations
0.0%
Total Operations
7
Slowest Operation
76.36 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 39.6ms 79.2ms 118.8ms 158.4ms

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
users/index 7 ms 9.2%
layouts/application 18 ms 23.6%
SELECT * FROM posts WHERE title LIKE ? AND content LIKE ? AND LOWER(title) LIKE ? AND UPPER(content) LIKE ? 18 ms 23.6%
SELECT posts.title, posts.content, users.name FROM posts JOIN users ON posts.user_id = users.id WHERE posts.published = ? 26 ms 34.0%
SELECT * FROM users WHERE id = ? 3 ms 3.9%
users#create 76 ms 100.0%
SELECT name FROM users 10 ms 13.1%