Skip to content
This repository has been archived by the owner on Aug 14, 2024. It is now read-only.

Commit

Permalink
ref(docs): correct decoded body size name in docs (#1059)
Browse files Browse the repository at this point in the history
  • Loading branch information
DominikB2014 authored Oct 18, 2023
1 parent 6775702 commit 0e2a88f
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions src/docs/sdk/performance/span-data-conventions.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down

1 comment on commit 0e2a88f

@vercel
Copy link

@vercel vercel bot commented on 0e2a88f Oct 18, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Successfully deployed to the following URLs:

develop – ./

develop-git-master.sentry.dev
develop.sentry.dev

Please sign in to comment.