PerformanceObserver, Resource Timing, Navigation Timing, User Timing, Long Tasks, and timeline visualization
All major browsers support the Performance API.
Explore available entry types and observe performance entries in real-time.
View timing data for all resources loaded by the page.
| Name | Type | Duration (ms) | Transfer (B) | DNS (ms) | Connect (ms) | TTFB (ms) |
|---|
Create performance marks and measures interactively. Use them to instrument your code.
Monitor tasks that block the main thread for more than 50ms. Uses PerformanceObserver with "longtask" type.
Visual chart of all performance entries on a time axis.
Complete Performance Timeline API integration snippets.