diff --git a/src/docs/sdk/performance/span-data-conventions.mdx b/src/docs/sdk/performance/span-data-conventions.mdx index 712e6a14ec..b084334f40 100644 --- a/src/docs/sdk/performance/span-data-conventions.mdx +++ b/src/docs/sdk/performance/span-data-conventions.mdx @@ -12,15 +12,15 @@ Below describes the conventions for the Span interface for the `data` field on t ## HTTP -| Attribute | Type | Description | Examples | -| ----------------------------------- | ------ | ----------------------------------------------------- | ------------------ | -| `http.query` | string | The Query string present in the URL. | `?foo=bar&bar=baz` | -| `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 (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` | +| Attribute | Type | Description | Examples | +| -------------------------------------- | ------ | ----------------------------------------------------- | ------------------ | +| `http.query` | string | The Query string present in the URL. | `?foo=bar&bar=baz` | +| `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 (in bytes). | `123` | +| `http.decoded_response_content_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