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

ref(docs): add units to PerformanceResourceTiming resource size properties #1050

Merged
merged 1 commit into from
Oct 11, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions src/docs/sdk/performance/span-data-conventions.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
Loading