trace
Provides a user-friendly trace stack into an operation that occurred in Spice. This command retrieves and displays task execution traces from the runtime.task_history table.
Usage​
spice trace [task] [flags]
task - The name of the task whose trace is requested. Supported tasks include:
accelerated_refreshai_chatai_completionsql_querynsqltool_use::document_similaritytool_use::list_datasetstool_use::sqltool_use::table_schematool_use::sample_datatool_use::sql_querytool_use::memoryvector_search
These tasks are from the task column in the Spice SQL runtime.task_history table.
Flags​
--trace-idRetrieve the trace with the given trace ID (the columntrace_idfromruntime.task_history).--idRetrieve the trace with the givenidlabel (i.e. the task has a valididwithin thelabelscolumn ofruntime.task_history).--api-keySpecify the API key for authentication.
The latest trace for the task will be used if neither --trace-id nor --id is specified.
Examples​
Retrieve the trace for the last text-to-SQL operation​
spice trace nsql
Retrieve the trace for a specific task by ID​
spice trace ai_chat --id chatcmpl-At6ZmDE8iAYRPeuQLA0FLlWxGKNnM
Retrieve a trace by trace-id​
spice trace sql_query --trace-id d5c6f1eed9f27257
Output Example​
[d5c6f1eed9f27257] ( 3077.45ms) ai_chat
├── [16eb97d757e4ea47] ( 0.85ms) tool_use::list_datasets
├── [ece97973668bd54a] ( 1651.14ms) ai_completion
├── [96fe526b54330e95] ( 0.62ms) tool_use::get_readiness
└── [8aa2bf4c94f42ba2] ( 1420.09ms) ai_completion
This output represents a structured trace of executed tasks.
