메인 콘텐츠로 건너뛰기
GET
/
endpoints
/
{endpoint_id}
/
replicas
레플리카 목록 조회
curl --request GET \
  --url https://external.aieev.cloud:5007/external/api/v1/endpoints/{endpoint_id}/replicas \
  --header 'Authorization: Bearer <token>'
[
  {
    "replica_id": "2xoeq1pe",
    "state": "RUNNING",
    "node_id": "<string>",
    "node_ip": "100.64.0.11",
    "actor_id": "<string>",
    "actor_name": "<string>",
    "worker_id": "<string>",
    "pid": 123,
    "start_time_s": 123
  }
]

인증

Authorization
string
header
필수

API Key를 Bearer 토큰으로 전달합니다. 프로젝트 개요의 API 키 메뉴에서 생성할 수 있습니다.

경로 매개변수

endpoint_id
string
필수

엔드포인트 고유 ID

응답

200 - application/json

레플리카 목록

replica_id
string

레플리카 고유 ID

예시:

"2xoeq1pe"

state
string

레플리카 상태 (RUNNING, STARTING, STOPPING 등)

예시:

"RUNNING"

node_id
string | null

레플리카가 실행 중인 노드 ID

node_ip
string | null

노드 IP 주소

예시:

"100.64.0.11"

actor_id
string | null

Ray actor ID

actor_name
string | null

Ray actor 이름

worker_id
string | null

Ray worker ID

pid
integer | null

프로세스 ID

start_time_s
number | null

레플리카 시작 시간 (Unix timestamp, 초 단위)