Skip to main content

History

expanso-cli execution history

Show history events for an execution

Synopsis

Display history events for a specific execution, showing lifecycle changes and state transitions.

expanso-cli execution history EXECUTION_ID [flags]

Examples

  # Show history for an execution
expanso-cli execution history exec-abc123

# Show history from last hour
expanso-cli execution history exec-abc123 --since 1h

# Show history from last 7 days
expanso-cli execution history exec-abc123 --since 7d

# Show history since a specific date (UTC)
expanso-cli execution history exec-abc123 --since 2024-10-15

# Show history since a specific date and time (UTC)
expanso-cli execution history exec-abc123 --since "2024-10-15 14:30:00"

# Show history since RFC3339 timestamp
expanso-cli execution history exec-abc123 --since 2024-10-15T14:00:00Z

# Show verbose output with sequence numbers
expanso-cli execution history exec-abc123 --verbose

# Limit results with pagination
expanso-cli execution history exec-abc123 --limit 20

# Output as JSON
expanso-cli execution history exec-abc123 --format json

Options

  -f, --format {table|json|yaml|csv}   Output format (default table)
-h, --help help for history
-l, --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
--since string Filter events after this time (duration: 1h, 7d; date: 2024-10-15; or RFC3339)
-v, --verbose Show verbose output including sequence numbers
-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

SEE ALSO

Auto generated by spf13/cobra on 19-Nov-2025