Package version:

The request that generated the event.

interface Request {
    addr?: string;
    host?: string;
    id?: string;
    method?: string;
    useragent?: string;
}

Properties

addr?: string

The IP or hostname and possibly port of the client connection that initiated the event. This is the RemoteAddr from the standard http request.

host?: string

The externally accessible hostname of the registry instance, as specified by the http host header on incoming requests.

id?: string

The ID of the request that initiated the event.

method?: string

The request method that generated the event.

useragent?: string

The user agent header of the request.