Skip to main content

atlas status

Check the current status of a job run.
atlas status <job-run-id>
The job run ID is displayed when you start a job with atlas generate-issue. You can also find it in the job run URL on the web. Status values:
StatusDescription
pendingQueued, waiting to start
runningCurrently executing
completedFinished successfully
failedEncountered an error
cancelledStopped by request
Example:
atlas status 550e8400-e29b-41d4-a716-446655440000

atlas cancel

Cancel a running or pending job.
atlas cancel <job-run-id>
Stops execution and sets the job run status to cancelled. Example:
atlas cancel 550e8400-e29b-41d4-a716-446655440000

atlas watch

Interactively monitor your active jobs.
# Show interactive list of active jobs
atlas watch

# Stream live status for a specific job run
atlas watch <job-run-id>
Without an argument, atlas watch displays a list of your active and recent job runs. Select one to stream its live progress. This is also how you reconnect to a job if your terminal disconnects mid-run.