Skip to main content

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.

The Jobs page lists every batch job in your team and lets you filter by status and tags.
Jobs list page with name, slug, status, tags, requested resources, duration, creator, and created-at columns
The list shows the following columns:
  • Name: Job name
  • Slug: Unique identifier used by vesslctl commands
  • Status: Current lifecycle state (scheduling, running, succeeded, failed, terminated)
  • Tags: Tags on the job, shown as colored chips (extra tags collapse to +N).
  • Requested Resources: Requested GPU type and count
  • Duration: Time elapsed since the job started
  • Creator: User who submitted the job
  • Created at: When the job was created

Filter by status

Use the status dropdown above the list to filter by scheduling, running, succeeded, failed, or terminated. By default, all statuses are shown.

Filter by tag

A tag filter sidebar on the left of the Jobs list narrows results to jobs that carry one or more selected tags. Tags are managed inline on each job’s details page (see View job details).
Jobs list with a tag filter sidebar on the left and colored tag chips on individual job rows

From the CLI

vesslctl job list                        # all jobs in the current team
vesslctl job list --state running        # only running jobs
vesslctl job list --hide-deleted         # skip cancelled and terminated jobs
vesslctl job list --per-page 50          # paginate
See vesslctl job list for the full reference.

See also