---
title: "Container"
slug: "common-apidatatype-cscontainer"
updated: 2026-04-23T08:55:22Z
published: 2026-04-23T09:02:10Z
---

> ## Documentation Index
> Fetch the complete documentation index at: https://api.ncloud-docs.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Container

<p class="platform-info type-classic-vpc">Classic/VPC 환경에서 이용 가능합니다.</p>

컨테이너 정보입니다.

## 구문 <a name="구문"></a>
구문은 다음과 같습니다.

```JAVA
private String type;
private String containerStatus;
private long memoryUsageByte;
```

## 필드 <a name="필드"></a>
필드에 대한 설명은 다음과 같습니다. 

| 필드      | 타입 | 필수 여부   | 설명                                                                |
| --------------- | -------- | ------------- | ------------------------------------------------ |
| `type`          | String      | Required | 컨테이너 종류<ul><li>`indexer` \| `searcher`</li></ul> |
| `containerStatus` | String      | Required | 컨테이너 상태<ul><li>`created` \| `warmup` \| `running` \| `clous_exiting` \| `failed` \| `unknown` <ul><li>`created`: 이제 막 컨테이너가 생성된 상태 <li>`warmup`: 컨테이너가 실행되어 데몬 구동 및 검색 볼륨을 메모리에 적재하고 있는 상태 <li>`running`: 컨테이너가 정상적으로 동작 중인 상태 <li>`clous_exiting`: 컨테이너의 종료 작업이 진행 중인 상태 <li>`failed`: 컨테이너의 기동이나 종료 작업이 실패했을 때 설정되는 상태 <li>`unknown`: checker가 컨테이너 상태를 확인하지 못한 상태</li></ul>|
| `memoryUsageByte` | long       | Required | 컨테이너의 메모리 사용량(Byte) |
