Skip to content
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Updated resource timing fields
  • Loading branch information
scheler committed Jul 18, 2024
commit 76ccb3306a7debd7e31701f724c6d588a9c1306f
36 changes: 26 additions & 10 deletions docs/browser/events.md
Original file line number Diff line number Diff line change
Expand Up @@ -92,16 +92,32 @@ The following table describes the payload fields that MUST be used to describe t

| Body Field | Type | Description | Examples | Requirement Level |
|---|---|---|---|---|
|name | string | URL of the requested resource || Recommended |
|fetchStart | long | || Recommended |
|domainLookupStart | long | || Recommended |
|domainLookupEnd | long | || Recommended |
|connectStart | long | || Recommended |
|secureConnectionStart | long | || Recommended |
|connectEnd | long | || Recommended |
|requestStart | long | || Recommended |
|responseStart | long | || Recommended |
|responseEnd | long | || Recommended |
| `connectEnd` | long | Time when the browser finishes establishing the connection to the server. | | Recommended |
| `connectStart` | long | Time when the browser starts establishing the connection to the server. | | Recommended |
| `decodedBodySize` | long | Size of the response body after it has been decoded. | | Recommended |
| `domComplete` | long | Time when the DOM is fully loaded and parsed. | | Recommended |
| `domContentLoadedEventEnd` | long | Time when the DOMContentLoaded event completes. | | Recommended |
| `domContentLoadedEventStart` | long | Time when the DOMContentLoaded event starts. | | Recommended |
| `domInteractive` | long | Time when the DOM becomes interactive. | | Recommended |
| `domainLookupEnd` | long | Time when the domain name lookup is finished. | | Recommended |
| `domainLookupStart` | long | Time when the domain name lookup starts. | | Recommended |
| `encodedBodySize` | long | Size of the response body as it is received from the server. | | Recommended |
| `fetchStart` | long | Time when the browser starts fetching the resource. | | Recommended |
| `initiatorType` | string | Type of resource that initiated the request. | | Recommended |
| `loadEventEnd` | long | Time when the load event completes. | | Recommended |
| `loadEventStart` | long | Time when the load event starts. | | Recommended |
| `name` | string | URL of the resource. | | Recommended |
| `navigationStart` | long | Time when the navigation starts. | | Recommended |
| `redirectEnd` | long | Time when the last redirect is completed. | | Recommended |
| `redirectStart` | long | Time when the first redirect starts. | | Recommended |
| `requestStart` | long | Time when the browser starts requesting the resource. | | Recommended |
| `responseEnd` | long | Time when the browser finishes receiving the response. | | Recommended |
| `responseStart` | long | Time when the browser starts receiving the response. | | Recommended |
| `responseStatus` | string | HTTP response status code. | | Recommended |
| `secureConnectionStart` | long | Time when the secure connection starts. | | Recommended |
| `transferSize` | string | Size of the resource transferred over the network. | | Recommended |
| `unloadEventEnd` | long | Time when the unload event completes. | | Recommended |
| `unloadEventStart` | long | Time when the unload event starts. | | Recommended |

| Attribute | Type | Description | Examples | Requirement Level |
|---|---|---|---|---|
Expand Down