ray.serve.schema.ProxyDetails#
- class ray.serve.schema.ProxyDetails[source]#
Detailed info about a Ray Serve ProxyActor.
- status#
The current status of the proxy.
- model_config: ClassVar[ConfigDict] = {'frozen': True}#
Configuration for the model, should be a dictionary conforming to [
ConfigDict][pydantic.config.ConfigDict].
- model_fields: ClassVar[dict[str, FieldInfo]] = {'actor_id': FieldInfo(annotation=Union[str, NoneType], required=False, description='Actor ID.'), 'actor_name': FieldInfo(annotation=Union[str, NoneType], required=False, description='Actor name.'), 'log_file_path': FieldInfo(annotation=Union[str, NoneType], required=False, description="The relative path to the Serve actor's log file from the ray logs directory."), 'node_id': FieldInfo(annotation=Union[str, NoneType], required=False, description='ID of the node that the actor is running on.'), 'node_instance_id': FieldInfo(annotation=Union[str, NoneType], required=False, description='Cloud provider instance id of the node that the actor is running on.'), 'node_ip': FieldInfo(annotation=Union[str, NoneType], required=False, description='IP address of the node that the actor is running on.'), 'status': FieldInfo(annotation=ProxyStatus, required=True, description='Current status of the proxy.'), 'worker_id': FieldInfo(annotation=Union[str, NoneType], required=False, description='Worker ID.')}#
Metadata about the fields defined on the model, mapping of field names to [
FieldInfo][pydantic.fields.FieldInfo].This replaces
Model.__fields__from Pydantic V1.