Skip to main content
The ax traces commands let you retrieve and export trace data from your Arize projects.

ax traces list

List traces within a project.
ax traces list <project-id> [--start-time <time>] [--end-time <time>] [--filter <expr>] [--limit <n>] [--cursor <cursor>]
OptionDescription
project-idProject ID (required, positional argument)
--start-timeStart of time window, inclusive (ISO 8601, e.g. 2024-01-01T00:00:00Z)
--end-timeEnd of time window, exclusive (ISO 8601, e.g. 2024-01-02T00:00:00Z). Defaults to now
--filterFilter expression (e.g. "status_code = 'ERROR'", "latency_ms > 1000")
--limitMaximum number of results to return
--cursorPagination cursor for the next page
Examples:
ax traces list proj_abc123
ax traces list proj_abc123 --output traces.json
ax traces list proj_abc123 --filter "latency_ms > 2000" --output traces.parquet