Daita Logo

Observability & Data

Inspect traces, memory, conversations, schedules, secrets, and webhooks from the CLI.

#traces

View OpenTelemetry traces exported from your deployed agents.

#List traces

bash
daita traces list

Options:

FlagDefaultDescription
--limit10Number of traces to return
--statusFilter by status
--agent-idFilter by agent

#Show trace details

bash
daita traces show <trace_id>

#Span hierarchy

bash
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

bash
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

bash
daita traces stats

Options:

FlagDefaultDescription
--period24hTime 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

bash
daita memory status --project <project_name>

Shows total workspace count, entry counts, and storage usage for a project's memory.

#Memory contents

bash
daita memory show <workspace>  --project <project_name>

Options:

FlagDefaultDescription
--limit50Number of entries to display
--fullDownload and display complete file contents

#conversations

Manage conversation history for agents that use conversation plugins.

#List conversations

bash
daita conversations list

Options:

FlagDefaultDescription
--agent-nameFilter by agent
--user-idcliUser scope
--limit20Number of conversations to return

#Show a conversation

bash
daita conversations show <conversation_id>

#Create a conversation

bash
daita conversations create --agent-name <name>

Options:

FlagDescription
--titleOptional display title
--user-idUser scope (default: cli)

#Delete a conversation

bash
daita conversations delete <conversation_id>

#schedules

Pause and resume agents that are running on a cron schedule.

#List schedules

bash
daita schedules list

#Show schedule details

bash
daita schedules show <schedule_id>

#Pause a schedule

bash
daita schedules pause <schedule_id>

#Resume a schedule

bash
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

bash
daita secrets set <key> <value>

#List secrets

bash
daita secrets list

#Remove a secret

bash
daita secrets remove <key>

#Import from a .env file

bash
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.

bash
# Import from the default .env
daita secrets import
 
# Import from a specific file
daita secrets import staging.env

#webhooks

#List webhook URLs

bash
daita webhooks list

Returns all webhook URLs configured for your organisation. Webhook URLs can be used to trigger agent executions from external systems via HTTP POST.