Contains size information for a network request and its response. Sizes are in bytes.

Definition

object RequestSizes {
  requestBodySize: Int
  requestHeadersSize: Int
  responseBodySize: Int
  responseHeadersSize: Int
}

Fields

requestBodySize: Int

Size of the request body (payload).

requestHeadersSize: Int

Size of the request headers.

responseBodySize: Int

Size of the response body.

responseHeadersSize: Int

Size of the response headers.