Performance
Performance Observer
Observe real-time metric entries (paint, layout-shift, resource) as they occur.
Checking support...
Feature Not SupportedThis browser does not support the Performance Observer Web API feature. Try testing in a modern browser (such as Chrome, Edge, Safari, or Firefox).
Advertisement
Interactive Input Workspace
Ready for input
Web API Execution Output
Result output will be displayed here after processing...
Native JavaScript Code Example (Zero Libraries)
const observer = new PerformanceObserver((list) => {
for (const entry of list.getEntries()) console.log(entry);
});
observer.observe({ entryTypes: ['paint', 'mark'] });About the Performance Observer Web API
PerformanceObserver interface is used to observe performance measurement events.
Specification:W3C & WHATWG Web API Standard
Sponsored Content