ResourceTiming

@Serializable
data class ResourceTiming(val requestTime: Double, val proxyStart: Double, val proxyEnd: Double, val dnsStart: Double, val dnsEnd: Double, val connectStart: Double, val connectEnd: Double, val sslStart: Double, val sslEnd: Double, val workerStart: Double, val workerReady: Double, val workerFetchStart: Double, val workerRespondWithSettled: Double, val workerRouterEvaluationStart: Double? = null, val workerCacheLookupStart: Double? = null, val sendStart: Double, val sendEnd: Double, val pushStart: Double, val pushEnd: Double, val receiveHeadersStart: Double, val receiveHeadersEnd: Double)

Timing information for the request.

Constructors

Link copied to clipboard
constructor(requestTime: Double, proxyStart: Double, proxyEnd: Double, dnsStart: Double, dnsEnd: Double, connectStart: Double, connectEnd: Double, sslStart: Double, sslEnd: Double, workerStart: Double, workerReady: Double, workerFetchStart: Double, workerRespondWithSettled: Double, workerRouterEvaluationStart: Double? = null, workerCacheLookupStart: Double? = null, sendStart: Double, sendEnd: Double, pushStart: Double, pushEnd: Double, receiveHeadersStart: Double, receiveHeadersEnd: Double)

Properties

Link copied to clipboard

Connected to the remote host.

Link copied to clipboard

Started connecting to the remote host.

Link copied to clipboard

Finished DNS address resolve.

Link copied to clipboard

Started DNS address resolve.

Link copied to clipboard

Finished resolving proxy.

Link copied to clipboard

Started resolving proxy.

Link copied to clipboard

Time the server finished pushing request.

Link copied to clipboard

Time the server started pushing request.

Link copied to clipboard

Finished receiving response headers.

Link copied to clipboard

Started receiving response headers.

Link copied to clipboard

Timing's requestTime is a baseline in seconds, while the other numbers are ticks in milliseconds relatively to this requestTime.

Link copied to clipboard

Finished sending request.

Link copied to clipboard

Started sending request.

Link copied to clipboard

Finished SSL handshake.

Link copied to clipboard

Started SSL handshake.

Link copied to clipboard

Started cache lookup when the source was evaluated to cache.

Link copied to clipboard

Started fetch event.

Link copied to clipboard

Finished Starting ServiceWorker.

Link copied to clipboard

Settled fetch event respondWith promise.

Link copied to clipboard

Started ServiceWorker static routing source evaluation.

Link copied to clipboard

Started running ServiceWorker.