- - Round
- ${util.formatNumber(diff.round)}
- - Base count
- ${util.formatNumber(diff.baseCount)}
- - Head count
- ${util.formatNumber(diff.headCount)}
- - Encoded
- ${util.formatBytes(request.encodedDataLength ?? 0)}
- - Decoded body
- ${util.formatBytes(request.decodedBodyLength ?? 0)}
- - MIME
- ${escapeHtml(request.mimeType ?? '-')}
- - Protocol
- ${escapeHtml(request.protocol ?? '-')}
- - Remote
- ${escapeHtml(request.remoteIPAddress == null ? '-' : `${request.remoteIPAddress}:${request.remotePort ?? ''}`)}
- - Failed
- ${request.failed ? escapeHtml(request.errorText ?? 'yes') : 'no'}
-
- ${bodyNote}
- ${renderDetails('Request body', requestBody, requestBody != null)}
- ${renderDetails('Request headers', requestHeaders)}
- ${renderDetails('Response headers', responseHeaders)}
-