Observability & Data
Inspect traces, memory, conversations, schedules, secrets, and webhooks from the CLI.
#traces
View OpenTelemetry traces exported from your deployed agents.
#List traces
daita traces listOptions:
| Flag | Default | Description |
|---|---|---|
--limit | 10 | Number of traces to return |
--status | — | Filter by status |
--agent-id | — | Filter by agent |
#Show trace details
daita traces show <trace_id>#Span hierarchy
daita traces spans <trace_id>Displays the full parent-child span tree for a trace, showing operation names, durations, and status codes.
#AI decision events
daita traces decisions <trace_id>Lists all decision span events within a trace, including reasoning chains, confidence scores, and chosen options recorded by DecisionRecorder.
#Trace statistics
daita traces statsOptions:
| Flag | Default | Description |
|---|---|---|
--period | 24h | Time window: 24h, 7d, or 30d |
Aggregated statistics including operation counts, success rates, error rates, and latency percentiles over the selected period.
#memory
Inspect agent memory workspaces.
#Memory status
daita memory status --project <project_name>Shows total workspace count, entry counts, and storage usage for a project's memory.
#Memory contents
daita memory show <workspace> --project <project_name>Options:
| Flag | Default | Description |
|---|---|---|
--limit | 50 | Number of entries to display |
--full | — | Download and display complete file contents |
#conversations
Manage conversation history for agents that use conversation plugins.
#List conversations
daita conversations listOptions:
| Flag | Default | Description |
|---|---|---|
--agent-name | — | Filter by agent |
--user-id | cli | User scope |
--limit | 20 | Number of conversations to return |
#Show a conversation
daita conversations show <conversation_id>#Create a conversation
daita conversations create --agent-name <name>Options:
| Flag | Description |
|---|---|
--title | Optional display title |
--user-id | User scope (default: cli) |
#Delete a conversation
daita conversations delete <conversation_id>#schedules
Pause and resume agents that are running on a cron schedule.
#List schedules
daita schedules list#Show schedule details
daita schedules show <schedule_id>#Pause a schedule
daita schedules pause <schedule_id>#Resume a schedule
daita schedules resume <schedule_id>#secrets
Manage encrypted secrets stored in the Daita cloud. Secret values are never returned in list or show commands — only key names are displayed.
#Set a secret
daita secrets set <key> <value>#List secrets
daita secrets list#Remove a secret
daita secrets remove <key>#Import from a .env file
daita secrets import [env_file]env_file defaults to .env in the current directory. Lines in KEY=value format are imported; comments and blank lines are skipped.
# Import from the default .env
daita secrets import
# Import from a specific file
daita secrets import staging.env#webhooks
#List webhook URLs
daita webhooks listReturns all webhook URLs configured for your organisation. Webhook URLs can be used to trigger agent executions from external systems via HTTP POST.