Assistant CoreAssistant Core

Metrics & Tracing

Understand dashboard metrics and inspect per-message traces for reliability, latency, feedback, and credit usage.

The assistant dashboard shows how fast, reliable, and cost-efficient your assistant is. Tracing lets you inspect an individual message to see its LLM calls, tool calls, token usage, latency, and credits.

Use metrics to spot trends. Use a trace to find the cause of a slow, failed, or expensive turn.

Dashboard metrics

Go to Admin Panel → Assistants → Dashboard. The date range at the top applies to period metrics and charts. For operational metrics, select Chat, Standard Voice, or Realtime Voice. The analytics requests use the same date range, browser timezone, and selected mode.

The range includes both its start and end dates in the browser timezone. Two summary cards are exceptions: Active Today always uses the current local day, while Memories is the assistant's current total.

Mode-scoped metrics should only be compared within the same mode because Chat and Voice use different latency milestones. The selected mode and date range are also stored in the URL, so the same dashboard view can be reloaded or shared.

Reading percentiles

TermMeaning
P9595% of samples are at or below this value. Use it to identify slow tail experiences.

means there is not enough data or the metric does not apply. It does not mean zero latency.

Operational metrics by mode

MetricDefinitionHow to use it
P95 ResponseP95 response-start latency over completed turns with valid timestampsIdentify slow tail experiences. The start milestone depends on Chat or Voice.
Technical Failure Ratefailed / (completed + failed)Tracks technical pipeline failures. User-interrupted turns are not counted as technical failures.
Cost per Completed TurnAttributed credits divided by completed turnsCompare cost across models, date ranges, and interaction modes.
Tool Error RateTool executions with action ERROR divided by all tool executionsTrack tool-loop reliability for Chat and Standard Voice.

Cost per Completed Turn can be for Realtime Voice because that mode is session-priced. Tool Error Rate is also for Realtime Voice until provider-owned tool loops emit canonical tool executions.

The summary cards also display Positive Feedback Rate and LLM Trace Issue Rate for the selected date range. Positive Feedback Rate is when the period has no ratings. LLM Trace Issue Rate is the percentage of LLM calls with an error or aborted status. Do not use it as a substitute for Technical Failure Rate: a user interruption can produce an aborted trace even when the pipeline did not fail technically.

Chat latency

MetricStartsEnds
First Response LatencyServer receives the chat requestFirst response text is sent to the user

First Response Latency is the end-to-end latency experienced by the user. It can include context loading, memory retrieval, and tool loops before the first response appears. It is different from LLM TTFT, which covers only one LLM call.

Voice latency

MetricStartsEnds
End-of-Speech → First Audio SentThe system determines that the user has finished speakingServer sends the first audio frame to the client/device
Endpointing LatencyUser finishes speakingAudio input is committed for processing
ASR LatencyAudio input is committedFinal transcript is available
Agent LatencyFinal transcript is availableFirst response text is available
TTS Text BufferingFirst response text is availableFirst TTS request is sent
TTS First Audio LatencyFirst TTS request is sentProvider returns the first audio
Audio Send LatencyProvider returns the first audioServer sends the first audio frame

For Standard Voice, End-of-Speech → First Audio Sent covers the complete endpointing → ASR → Agent → TTS → audio-send pipeline. The stage metrics identify the specific bottleneck.

For Realtime Voice, the provider handles audio in an integrated pipeline. The dashboard reports only the P95 End-of-Speech → First Audio Sent metric; ASR/Agent/TTS stages are instead of synthetic estimates. Status and duration remain available in individual turn details.

End-of-Speech → First Audio Sent and Audio Send Latency end when the server sends the first frame. They do not measure when the user actually hears audio; network transit, client buffering, and speaker playback can add latency.

What Is Tracing?

A single assistant reply is not always one LLM call. When the assistant uses tools (knowledge base, MCP, custom APIs, etc.), it runs a tool loop: call the model → run the requested tools → feed results back → call the model again, until it has a final answer.

Tracing records each step of that loop:

  • One LLM call entry per loop iteration: model, provider, tokens, duration, and status.
  • One tool execution entry per invoked tool: arguments, result, duration, and outcome.

This is built-in observability — no external setup is required.

How to Open Traces

  1. Go to the Admin Panel and open Assistants.
  2. Open an assistant, then go to Conversations.
  3. Select a conversation to view its messages.
  4. On any assistant message, click the Trace pill to open Agent Trace.

Only assistant messages have traces. User messages do not trigger LLM or tool calls, so there is nothing to trace.

Turn Summary

The top of the dialog shows the turn's interaction mode, channel, Voice mode when applicable, and status. Technical badges use labels such as Completed, Web app, Manual, Standard, and Realtime. The summary shows First Response Latency for Chat or End-of-Speech → First Audio Sent for Voice, plus total attributed credits. Voice turns show Voice Latency Breakdown when stage timings are available.

The timeline then combines LLM calls and charged usage steps such as ASR, TTS, memory, or Realtime Voice in execution order. Credits and their attribution type appear on the relevant step.

Reading an LLM Call

Each LLM call appears as a timeline card. The card identifies its phase, such as a direct response, tool call, or result synthesis, and shows the model, status, input/output tokens, duration, and tool count. Expand it for provider, total/cached/reasoning tokens, TTFT, cost, and timestamp.

FieldMeaning
ModelChat model that handled the call, for example gpt-5.6-luna
ProviderProvider behind the model, for example openai or anthropic
Statuscompleted, aborted, or error
TimeWhen the call started
DurationHow long the call ran

Token usage

MetricMeaning
Input tokensTokens sent to the model: prompt, history, context, and tool results
Output tokensTokens generated and reported by the provider
Total tokensTotal tokens reported by the provider for the LLM call
Cached tokensInput tokens read from the provider's prompt cache
Reasoning tokensTokens used for internal reasoning when reported by the provider/model

Cached tokens and Reasoning tokens appear only when greater than zero. Token accounting can differ by provider, so compare usage within the same model and provider.

LLM latency

MetricMeaning
DurationTotal time from sending an LLM request until its stream completes or stops
TTFT (Time to First Token)Time from the start of one LLM call to its first content token; it excludes stages before that call

An answer with multiple tool loops has multiple LLM calls and multiple TTFT/Duration values. Do not add TTFT values together as a replacement for First Response Latency.

Tool Executions

When the assistant uses tools, the call card lists every execution. Each row shows the tool name, a type badge, and its duration. Expand a row for details.

DetailMeaning
ActionOutcome of the tool call
TimeWhen the tool ran
ArgsArguments passed by the model, in JSON
ResultSummary of the tool result
ErrorError message when the tool failed

Tool types

BadgeMeaning
builtinServer-side built-in tools such as knowledge base, memory, and web
mcpTools provided through MCP endpoints and servers
customYour custom HTTP API tools

Tool actions

ActionMeaning
REQLLMResult was sent back to the model to continue the loop
RESPONSETool produced the final response directly
NONETool ran but returned nothing requiring further action
ERRORTool failed; inspect the error message

Args and Result are sanitized and truncated for safety and readability. They are summaries, not complete raw payloads.

Trace Status

StatusMeaning
completedCall completed normally
abortedCall stopped early, for example when the user interrupted or barged in
errorCall failed; inspect the trace and tool errors for the cause

Common Use Cases

Debug a wrong answer — inspect which tools were called, their arguments, and their results. A bad result or incorrect arguments often explain an off-topic reply.

Analyze cost — token usage maps to credit consumption. Use traces to find expensive messages and understand why. See Credits.

Diagnose a slow reply — compare each loop and tool duration. A slow external tool or too many tool loops is often the bottleneck.

On this page