featherbit UI
    Preparing search index...

    Interface BodyCapture

    A captured request or response body (text present only when enabled).

    interface BodyCapture {
        binary?: boolean;
        len: number;
        streamed?: boolean;
        text?: string;
        truncated?: boolean;
        unchanged?: boolean;
    }
    Index
    binary?: boolean

    True when the body is not valid UTF-8 (image, blob, …); text is omitted.

    len: number
    streamed?: boolean

    True when the response body was streamed to the client unbuffered instead of being captured here — the stream itself is never read to produce a trace snapshot, since the client is its only legitimate consumer. len/text/truncated/binary are all left at their defaults in this case, so a streamed response otherwise looks like an empty 0-byte body with no explanation.

    text?: string
    truncated?: boolean
    unchanged?: boolean