Interface CompletedRequest

interface CompletedRequest {
    body: CompletedBody;
    headers: Headers;
    hostname?: string;
    httpVersion?: string;
    id: string;
    matchedRuleId?: string;
    method: string;
    path: string;
    protocol: string;
    rawHeaders: RawHeaders;
    rawTrailers: RawHeaders;
    remoteIpAddress?: string;
    remotePort?: number;
    tags: string[];
    timingEvents: TimingEvents;
    trailers: Trailers;
    url: string;
}

Hierarchy (view full)

Properties

headers: Headers
hostname?: string
httpVersion?: string
id: string
matchedRuleId?: string
method: string
path: string
protocol: string
rawHeaders: RawHeaders
rawTrailers: RawHeaders
remoteIpAddress?: string
remotePort?: number
tags: string[]
timingEvents: TimingEvents
trailers: Trailers
url: string