Skip to content

Commit

Permalink
docs(sdk): Update render blocking status.
Browse files Browse the repository at this point in the history
Adds mention of new data on resource spans, see getsentry/sentry-javascript#7127
  • Loading branch information
k-fish committed Feb 9, 2023
1 parent 05b3bff commit 6a630f4
Showing 1 changed file with 9 additions and 8 deletions.
17 changes: 9 additions & 8 deletions src/docs/sdk/performance/span-data-conventions.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -19,11 +19,12 @@ Below describes the conventions for the Span interface for the `data` field on t

## Browser

| Attribute | Type | Description | Examples |
| ------------------- | ------ | ------------------------------------------ | --------------------- |
| `url` | string | The URL of the resource that was fetched. | `https://example.com` |
| `method` | string | The HTTP method used. | `GET` |
| `type` | string | The type of the resource that was fetched. | `xhr` |
| `Encoded Body Size` | number | The encoded body size of the request. | `123` |
| `Decoded Body Size` | number | The decoded body size of the request. | `456` |
| `Transfer Size` | number | The transfer size of the request. | `789` |
| Attribute | Type | Description | Examples |
| ------------------------ | ------ | ------------------------------------------- | --------------------- |
| `url` | string | The URL of the resource that was fetched. | `https://example.com` |
| `method` | string | The HTTP method used. | `GET` |
| `type` | string | The type of the resource that was fetched. | `xhr` |
| `Encoded Body Size` | number | The encoded body size of the request. | `123` |
| `Decoded Body Size` | number | The decoded body size of the request. | `456` |
| `Transfer Size` | number | The transfer size of the request. | `789` |
| `Render Blocking Status` | number | The render blocking status of the resource. | `non-blocking` |

0 comments on commit 6a630f4

Please sign in to comment.