The Performance API is a group of standards used to measure the performance of web applications.
The Performance API is a group of standards used to measure the performance of web applications.
To ensure web applications are fast, it's important to measure and analyze various performance metrics. The Performance API provides important built-in metrics and the ability to add your own measurements to the browser's performance timeline. The performance timeline contains high precision timestamps and can be displayed in developer tools. You can also send its data to analytics end points to record performance metrics over time.
Each performance metric is represented by a single PerformanceEntry. A performance entry has a name, a duration, a startTime, and a type. All performance metrics extend the PerformanceEntry interface and qualify it further.
Most of the performance entries are recorded for you without you having to do anything, and are then accessible either through Performance.getEntries() or (preferably) through PerformanceObserver. For example, PerformanceEventTiming entries are recorded for events that take longer than a set threshold. But the Performance API also enables you to define and record your own custom events, using the PerformanceMark and PerformanceMeasure interfaces.
The main Performance interface is available for each global using self.performance and enables you to add custom performance entries, to clear performance entries, and to retrieve performance entries.
The PerformanceObserver interface enables you to listen for various types of performance entry as they are recorded.
For more conceptual information, see the Performance API guides below.
The following interfaces are present in the Performance API:
EventCountsA read-only map returned by performance.eventCounts containing the number of events which have been dispatched per event type.
LargestContentfulPaintMeasures the render time of the largest image or text block visible within the viewport, recorded from when the page first begins to load.
LayoutShiftProvides insights into the layout stability of web pages based on movements of the elements on the page.
LayoutShiftAttributionProvides debugging information about elements which have shifted.
PerformanceMain interface to access performance measurements. Available to window and worker contexts using self.performance.
PerformanceElementTimingMeasures rendering timestamps of specific elements.
PerformanceEntryAn entry on the performance timeline encapsulating a single performance metric. All performance metrics inherit from this interface.
PerformanceEventTimingMeasures latency of events and first input delay (FID).
PerformanceLongTaskTimingDetects long tasks that occupy rendering and block other tasks from being executed.
PerformanceMarkCustom marker for your own entry on the performance timeline.
PerformanceMeasureCustom time measurement between two performance entries.
PerformanceNavigationTimingMeasures document navigation events, like how much time it takes to load a document.
PerformanceObserverListens for new performance entries as they are recorded in the performance timeline.
PerformanceObserverEntryListList of entries that were observed in a performance observer.
PerformancePaintTimingMeasures render operations during web page construction.
PerformanceResourceTimingMeasures network loading metrics such as redirect start and end times, fetch start, DNS lookup start and end times, response start and end times for resources such as images, scripts, fetch calls, etc.
PerformanceServerTimingSurfaces server metrics that are sent with the response in the Server-Timing HTTP header.
TaskAttributionTimingIdentifies the type of task and the container that is responsible for the long task.
VisibilityStateEntryMeasures the timing of page visibility state changes, i.e., when a tab changes from the foreground to the background or vice versa.
The following guides help you to understand key concepts of the Performance API and provide an overview about its abilities:
© 2005–2023 MDN contributors.
Licensed under the Creative Commons Attribution-ShareAlike License v2.5 or later.
https://developer.mozilla.org/en-US/docs/Web/API/Performance_API