Skip to main content

list

Addedv1.0.x

This operation lists recent commands recorded in the local history log, ordered newest first. Each entry includes the timestamp, command line, command type, and success flag.

Synopsis

zilliz history list
[--limit <integer>]
[--all]

Options

  • --limit (integer) -

    Indicates the maximum number of entries to display. Default: 50. Ignored when --all is set.

  • --all (boolean) -

    Shows every recorded entry instead of the most recent --limit entries.

Example

# Last 50 entries
zilliz history list

# Last 10 entries as JSON
zilliz history list --limit 10 -o json

# Full history
zilliz history list --all