ray.serve.schema.ReplicaDetails#

pydantic model ray.serve.schema.ReplicaDetails[source]#

Detailed info about a single deployment replica.

field actor_id: str | None = None#

Actor ID.

field actor_name: str | None = None#

Actor name.

field log_file_path: str | None = None#

The relative path to the Serve actor’s log file from the ray logs directory.

field node_id: str | None = None#

ID of the node that the actor is running on.

field node_instance_id: str | None = None#

Cloud provider instance id of the node that the actor is running on.

field node_ip: str | None = None#

IP address of the node that the actor is running on.

field pid: int | None = None#

PID of the replica actor process.

field replica_id: str [Required]#

Unique ID for the replica.

field start_time_s: float [Required]#

The time at which the replica actor was started. If the controller dies, this is the time at which the controller recovers and retrieves replica state from the running replica actor.

field state: ReplicaState [Required]#

Current state of the replica.

field worker_id: str | None = None#

Worker ID.