Server Timing API Demo

This page demonstrates the Server Timing API implementation. Server timing data is automatically collected and displayed for page loads and API calls.

Current Page Load Timing

No server timing data available for this page load.

Interactive Tests

Activity Logs

No activity yet. Try the buttons above.

How Server Timing Works

Server-Side: The server measures different phases of request processing (parsing, database queries, rendering, etc.) and includes this data in theServer-Timing response header.

Client-Side: The browser exposes this timing data through the Performance API, specifically in serverTimingproperties of navigation and resource entries.

Benefits: This allows you to correlate client-side performance metrics with server-side timing data, providing a complete picture of your application's performance.