Default Measurements
By default, the middleware measures three key timings:
Bootstrap: Time before the middleware gets called.
Application Time: Time to get a response within the app.
Total: Total time before sending out the response.
You can view the timing information in your browser's developer tools under the Timing section of the network tab. Here's how you can access it:
Open your browser's developer tools (usually by pressing F12 or right-clicking and selecting "Inspect").
Go to the Network tab.
Select a network request to view its details.
Navigate to the Timing tab within the request details.
In the Timing tab, you will see the Server Timing breakdown, which provides insights into the server-side performance of your API requests. This information includes the default measurements (Bootstrap, Application time, Total) and any custom measurements you have added.
Last updated
Was this helpful?