Interface OngoingRequest

interface OngoingRequest {
    body: OngoingBody;
    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;
    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
url: string