harp_apps.proxy.settings.remote¶
- class Remote[source]¶
Bases:
Stateful[RemoteSettings]
Create a new model by parsing and validating input data from keyword arguments.
Raises [ValidationError][pydantic_core.ValidationError] if the input data cannot be validated to form a valid model.
self is explicitly positional-only to allow self as a field name.
- async check()[source]¶
Uses the probe (luke), to check the health of each urls. It is also done on fallback and inactive urls, to ensure that they are ready in case we need them.
- model_post_init(context, /)¶
This function is meant to behave like a BaseModel method to initialise private attributes.
It takes context as an argument since that’s what pydantic-core passes when calling it.
- Args:
self: The BaseModel instance. context: The context.
- Parameters:
self (BaseModel)
context (Any)
- Return type:
None
- notify_url_status(url, status)[source]¶
Take into account a http status code to update the status of the url. Behaviour differs depending on the instance configuration (some considers 5xx as down, some ignores non-network errors).
- DEFAULT_LIVENESS: ClassVar[BaseLiveness] = IgnoreLiveness()¶
Default liveness object to use when the remote is set to inherit the liveness object.
- current_pool_name: str¶
Name of the currently used pool. This does not mean that all urls come from this pool, as the fallback pool may be active although some urls from default pool are still available.
- property endpoints: List[RemoteEndpoint]¶
- liveness: IgnoreLiveness | InheritLiveness | LeakyBucketLiveness | NaiveLiveness¶
Liveness
- model_config: ClassVar[ConfigDict] = {}¶
Configuration for the model, should be a dictionary conforming to [ConfigDict][pydantic.config.ConfigDict].
- probe: RemoteProbe | None¶
Probe reference
- settings: Annotated[TSettings, Field(repr=False)]¶
- class RemoteEndpoint[source]¶
Bases:
Stateful[RemoteEndpointSettings]
Stateful version of a remote endpoint definition.
Create a new model by parsing and validating input data from keyword arguments.
Raises [ValidationError][pydantic_core.ValidationError] if the input data cannot be validated to form a valid model.
self is explicitly positional-only to allow self as a field name.
- failure(reason=None)[source]¶
Returns a boolean indicating if a state change happened.
- Parameters:
reason (str)
- liveness: IgnoreLiveness | InheritLiveness | LeakyBucketLiveness | NaiveLiveness¶
- model_config: ClassVar[ConfigDict] = {}¶
Configuration for the model, should be a dictionary conforming to [ConfigDict][pydantic.config.ConfigDict].
- settings: Annotated[TSettings, Field(repr=False)]¶
- class RemoteEndpointSettings[source]¶
Bases:
Configurable
A
HttpEndpoint
is an instrumented target URL that a proxy will use to route requests. It is used as the configuration parser forproxy.endpoints[].remote.endpoints[]
settings.url: "http://my-endpoint:8080" pools: [fallback] # omit for default pool failure_threshold: 3 success_threshold: 1
Create a new model by parsing and validating input data from keyword arguments.
Raises [ValidationError][pydantic_core.ValidationError] if the input data cannot be validated to form a valid model.
self is explicitly positional-only to allow self as a field name.
- liveness: Annotated[IgnoreLivenessSettings | InheritLivenessSettings | LeakyBucketLivenessSettings | NaiveLivenessSettings, Discriminator(discriminator=type, custom_error_type=None, custom_error_message=None, custom_error_context=None)]¶
- model_config: ClassVar[ConfigDict] = {'extra': 'forbid'}¶
Configuration for the model, should be a dictionary conforming to [ConfigDict][pydantic.config.ConfigDict].
- url: HttpUrl¶
- class RemoteProbe[source]¶
Bases:
Stateful[RemoteProbeSettings]
Stateful version of a probe definition.
Create a new model by parsing and validating input data from keyword arguments.
Raises [ValidationError][pydantic_core.ValidationError] if the input data cannot be validated to form a valid model.
self is explicitly positional-only to allow self as a field name.
- async check(client, endpoint)[source]¶
- Parameters:
client (AsyncClient)
endpoint (RemoteEndpoint)
- model_config: ClassVar[ConfigDict] = {}¶
Configuration for the model, should be a dictionary conforming to [ConfigDict][pydantic.config.ConfigDict].
- settings: Annotated[TSettings, Field(repr=False)]¶
- class RemoteProbeSettings[source]¶
Bases:
Configurable
A
HttpProbe
is a health check that can be used to check the health of a remote’s endpoints. It is used as the configuration parser forproxy.endpoints[].remote.probe
settings.type: http method: GET path: /health headers: x-purpose: "health probe" timeout: 5.0
Create a new model by parsing and validating input data from keyword arguments.
Raises [ValidationError][pydantic_core.ValidationError] if the input data cannot be validated to form a valid model.
self is explicitly positional-only to allow self as a field name.
- model_config: ClassVar[ConfigDict] = {'extra': 'forbid'}¶
Configuration for the model, should be a dictionary conforming to [ConfigDict][pydantic.config.ConfigDict].
- class RemoteSettings[source]¶
Bases:
BaseRemoteSettings
A
HttpRemote
is a collection of endpoints that a proxy will use to route requests. It is used as the configuration parser forproxy.endpoints[].remote
settings.min_pool_size: 1 endpoints: # see HttpEndpoint - ... probe: # see HttpProbe ...
Create a new model by parsing and validating input data from keyword arguments.
Raises [ValidationError][pydantic_core.ValidationError] if the input data cannot be validated to form a valid model.
self is explicitly positional-only to allow self as a field name.
- endpoints: list[RemoteEndpointSettings]¶
- liveness: Annotated[IgnoreLivenessSettings | InheritLivenessSettings | LeakyBucketLivenessSettings | NaiveLivenessSettings, Discriminator(discriminator=type, custom_error_type=None, custom_error_message=None, custom_error_context=None)]¶
- model_config: ClassVar[ConfigDict] = {'extra': 'forbid'}¶
Configuration for the model, should be a dictionary conforming to [ConfigDict][pydantic.config.ConfigDict].
- probe: RemoteProbeSettings | None¶