Performance Timeline - Web API 接口参考 编辑
The Performance Timeline API defines extensions to the Performance
interface to support client-side latency measurements within applications. The extensions provide interfaces to retrieve performance entry metrics based on specific filter criteria. The standard also includes interfaces that allow an application to define performance observer callbacks that are notified when specific performance events are added to the browser's performance timeline.
This document provides an overview of the standard's interfaces. For more details about the interfaces, see the reference pages and Using Performance Timeline.
Performance extensions
The Performance Timeline API extends the Performance
interface with three methods that provide different mechanisms to get a set of performance records (metrics)
, depending on the specified filter criteria. The methods are:
getEntries()
- Returns all recorded
performance entries
or, optionally, the entries based on the specifiedname
,performance type
and/or theinitiatorType
(such as an HTML element). getEntriesByName()
- Returns the recorded
performance entries
based on the specifiedname
and optionally theperformance type
. getEntriesByType()
- Returns the recorded
performance entries
based on the specifiedperformance type
.
PerformanceEntry interface
The PerformanceEntry
interface encapsulates a single performance entry — that is, a single data point or metric in the performance timeline. This interface has the following four properties, and these properties are extended (with additional constraints) by other interfaces (such as PerformanceMark
):
name
- The name of the performance entry when the metric was created.
entryType
- The type of performance metric (for example, "
mark
"). startTime
- A
high resolution timestamp
representing the starting time for the performance entry. duration
- A high resolution timestamp representing the time value of the duration of the performance event. (Some performance entry types have no concept of duration and this value is set to
'0'
for such types.)
This interface includes a toJSON()
method that returns the serialization of the PerformanceEntry
object. The serialization is specific to the performance entry's type
.
Performance observers
这是一个实验中的功能
此功能某些浏览器尚在开发中,请参考浏览器兼容性表格以得到在不同浏览器中适合使用的前缀。由于该功能对应的标准文档可能被重新修订,所以在未来版本的浏览器中该功能的语法和行为可能随之改变。
The performance observer interfaces allow an application to register an observer for specific performance event types, and when one of those event types is recorded, the application is notified of the event via the observer's callback function that was specified when the observer was created.
When the observer (callback) is invoked, the callback's parameters include a performance observer entry list
that contains only observed performance entries
. That is, the list contains entries only for the event types that were specified when the observer's observe()
method was invoked. The performance observer entry list
interface has the same three getEntries*()
methods as the Performance
interface. However, note there is one key difference with these methods; the performance observer entry list
versions are used to retrieve observed performance entries within the observer callback.
Besides the PerformanceObserver's
interface's observe()
method (which is used to register the entry types
to observe), the PerformanceObserver
interface also has a disconnect()
method that stops an observer from receiving further events.
Performance observers were added to the Level 2
version of the standard and were not widely implemented.
实现状态
A summary of the interfaces' implementation status is provided below, including a link to more detailed information.
- Performance interface extensions: As shown in the
Performance
interface's Browser Compatibility table, most of these interfaces are broadly implemented by desktop browsers and have less support on mobile devices. - PerformanceEntry: As shown in the
PerformanceEntry
interface's Browser Compatibility table, most of these interfaces are broadly implemented by desktop browsers and have less support on mobile devices. - Performance Observers : As shown in the
PerformanceObserver
interface's Browser Compatibility table, this interface has no shipping implementations.
To test your browser's support for these interfaces, run the perf-api-support
application.
参见
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论