Request Class

The request that generated the event.

Constructor

Request(*, id: str | None = None, addr: str | None = None, host: str | None = None, method: str | None = None, useragent: str | None = None, **kwargs: Any)

Keyword-Only Parameters

Name Description
id
str

The ID of the request that initiated the event.

Default value: None
addr
str

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

Default value: None
host
str

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

Default value: None
method
str

The request method that generated the event.

Default value: None
useragent
str

The user agent header of the request.

Default value: None

Variables

Name Description
id
str

The ID of the request that initiated the event.

addr
str

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
str

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

method
str

The request method that generated the event.

useragent
str

The user agent header of the request.