Executions
expanso-cli job executions
List executions for a job
Synopsis
List all executions for a specific job with optional filtering.
expanso-cli job executions JOB_ID_OR_NAME [flags]
Examples
# List all executions for a job
expanso-cli job executions my-job
# List executions with specific states
expanso-cli job executions my-job --state running --state pending
# List executions on a specific node
expanso-cli job executions my-job --node-id node-123
# List executions for a specific job version
expanso-cli job executions my-job --job-version 3
# Limit results with pagination
expanso-cli job executions my-job --limit 10
# Continue to next page with token
expanso-cli job executions my-job --limit 10 --token `<token-from-previous-response>`
Options
-f, --format {table|json|yaml|csv} Output format (default table)
-h, --help help for executions
--job-version string Filter by job version
--limit int Maximum number of results to return (default 50)
--next-token string Continuation token for pagination
--no-header Hide table headers (table format only)
--no-style Disable colors and styling
--node-id stringArray Filter by node ID
--order string Order direction (asc, desc)
--order-by string Field to order by
--state execution state Filter by execution state
-w, --wide Show full values without truncation (table format only)
Options inherited from parent commands
--auth-token string API bearer authentication token
-e, --endpoint string API endpoint URL
-k, --insecure Skip TLS certificate verification
-p, --profile string Profile to use for configuration
--timeout string Request timeout duration
-v, --verbose Enable verbose logging
SEE ALSO
- expanso-cli job - Manage jobs