From 6a630f46d8bc42ed133dd45c71287faa4586989d Mon Sep 17 00:00:00 2001 From: Kev <6111995+k-fish@users.noreply.github.com> Date: Thu, 9 Feb 2023 12:42:00 -0500 Subject: [PATCH 1/2] docs(sdk): Update render blocking status. Adds mention of new data on resource spans, see https://github.com/getsentry/sentry-javascript/pull/7127 --- .../sdk/performance/span-data-conventions.mdx | 17 +++++++++-------- 1 file changed, 9 insertions(+), 8 deletions(-) diff --git a/src/docs/sdk/performance/span-data-conventions.mdx b/src/docs/sdk/performance/span-data-conventions.mdx index be7e782cad..0f89633d32 100644 --- a/src/docs/sdk/performance/span-data-conventions.mdx +++ b/src/docs/sdk/performance/span-data-conventions.mdx @@ -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` | From 49eb92f7b3a9079e6a0d83a19eb5188061066a82 Mon Sep 17 00:00:00 2001 From: Kev <6111995+k-fish@users.noreply.github.com> Date: Mon, 13 Feb 2023 15:15:21 -0500 Subject: [PATCH 2/2] Update span-data-conventions.mdx --- .../sdk/performance/span-data-conventions.mdx | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/src/docs/sdk/performance/span-data-conventions.mdx b/src/docs/sdk/performance/span-data-conventions.mdx index 0f89633d32..4107153ac6 100644 --- a/src/docs/sdk/performance/span-data-conventions.mdx +++ b/src/docs/sdk/performance/span-data-conventions.mdx @@ -19,12 +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` | -| `Render Blocking Status` | number | The render blocking status of the resource. | `non-blocking` | +| 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` | +| `resource.render_blocking_status` | string | The render blocking status of the resource. | `non-blocking` |