From 83814b61775c790d47cdecb06cde7d104ec1538b Mon Sep 17 00:00:00 2001 From: Dominik Buszowiecki <44422760+DominikB2014@users.noreply.github.com> Date: Wed, 11 Oct 2023 10:20:17 -0400 Subject: [PATCH] Update span-data-conventions.mdx (#1050) --- src/docs/sdk/performance/span-data-conventions.mdx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/docs/sdk/performance/span-data-conventions.mdx b/src/docs/sdk/performance/span-data-conventions.mdx index bd0804c880..712e6a14ec 100644 --- a/src/docs/sdk/performance/span-data-conventions.mdx +++ b/src/docs/sdk/performance/span-data-conventions.mdx @@ -18,9 +18,9 @@ Below describes the conventions for the Span interface for the `data` field on t | `http.fragment` | string | The Fragments present in the URI (Browser SDKs only). | `#foo=bar` | | `http.request.method` | string | The HTTP method used. | `GET` | | `http.response.status_code` | int | The status HTTP response. | `404` | -| `http.response_content_length` | number | The encoded body size of the response. | `123` | -| `http.decoded_response_body_length` | number | The decoded body size of the response. | `456` | -| `http.response_transfer_size` | number | The transfer size of the response. | `789` | +| `http.response_content_length` | number | The encoded body size of the response (in bytes). | `123` | +| `http.decoded_response_body_length` | number | The decoded body size of the response (in bytes). | `456` | +| `http.response_transfer_size` | number | The transfer size of the response (in bytes). | `789` | ## Mobile