Package version:

Interface AuditRequestInfoOutput

Audit entry for a request in the session.

interface AuditRequestInfoOutput {
    contentLength?: number;
    contentType: string;
    method: string;
    url: string;
    userAgent?: string;
}

Properties

contentLength?: number

The length of the request body in bytes.

contentType: string

The content type of the request.

method: string

The HTTP method of the request (i.e., GET, POST, DELETE).

url: string

The relative URL and query of the liveness request.

userAgent?: string

The user agent used to submit the request.