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

# Job 목록 조회하기

> 팀의 배치 잡을 둘러보고, 필터링하고, 검색하는 방법을 알아봐요.

**Jobs** 페이지에서는 팀의 모든 배치 잡을 확인하고 상태나 태그로 필터링할 수 있어요.

<div>
  <Frame>
    <img style={{ borderRadius: '0.5rem' }} src="https://mintcdn.com/dora/LUWzC5lx5RwOccfw/images/Job_list(tag).png?fit=max&auto=format&n=LUWzC5lx5RwOccfw&q=85&s=5ad5dae76dca897c75cd9435852ab170" alt="이름, 슬러그, 상태, 태그, 요청 리소스, 소요 시간, 생성자, 생성 시각 컬럼이 보이는 Jobs 목록 페이지" width="7680" height="4320" data-path="images/Job_list(tag).png" />
  </Frame>

  <small>예시: Jobs 목록 페이지</small>
</div>

<Info>
  목록에는 다음 컬럼이 표시돼요:

  * **Name**: Job 이름
  * **Slug**: Job의 고유 식별자(`vesslctl` 명령어에서 사용)
  * **Status**: 현재 라이프사이클 상태(`scheduling`, `running`, `succeeded`, `failed`, `terminated`)
  * **Tags**: Job에 달린 태그가 색상 칩으로 표시돼요(많으면 `+N`으로 줄여서 보여줘요).
  * **Requested Resources**: 요청한 GPU 종류와 수량
  * **Duration**: Job이 시작된 뒤 경과된 시간
  * **Creator**: Job을 제출한 사용자
  * **Created at**: Job이 만들어진 시각
</Info>

## 상태로 필터링하기

목록 위 상태 드롭다운에서 `scheduling`, `running`, `succeeded`, `failed`, `terminated` 중 원하는 상태를 선택해 결과를 좁힐 수 있어요. 기본값은 모든 상태가 표시돼요.

## 태그로 필터링하기

**Jobs** 목록 왼쪽의 태그 필터 사이드바에서 한 개 이상의 태그를 선택하면 해당 태그가 달린 Job만 표시돼요. 태그는 Job 상세 페이지에서 바로 추가하거나 제거할 수 있어요([Job 상세 정보 보기](/ko/member/job/details) 참고).

<div>
  <Frame>
    <img style={{ borderRadius: '0.5rem' }} src="https://mintcdn.com/dora/LUWzC5lx5RwOccfw/images/job_tags.png?fit=max&auto=format&n=LUWzC5lx5RwOccfw&q=85&s=14eb1bc25239da392a637fd059ef3853" alt="왼쪽에 태그 필터 사이드바, 각 행에 색상 칩으로 표시된 태그가 보이는 Jobs 목록" width="3162" height="1026" data-path="images/job_tags.png" />
  </Frame>

  <small>예시: 태그 필터 사이드바</small>
</div>

## CLI로 조회하기

```bash theme={null}
vesslctl job list                        # 현재 팀의 모든 Job
vesslctl job list --state running        # 실행 중인 Job만
vesslctl job list --hide-deleted         # 취소·종료된 Job 숨김
vesslctl job list --per-page 50          # 페이지네이션
```

자세한 내용은 [`vesslctl job list`](/ko/cli/commands/job#list)를 참고하세요.

## 함께 보기

* [Job 만들기](/ko/member/job/create)
* [Job 상세 정보 보기](/ko/member/job/details)
* [Job 정리하기](/ko/member/job/cleanup)
