docs/docs/genai/tracing/observe-with-traces/dashboard.mdx
import useBaseUrl from '@docusaurus/useBaseUrl';
The Overview tab in LLM and AI agent experiments provides comprehensive analytics and visualizations for your LLM application and AI agent traces. This tab is organized into three sub-tabs to help you monitor different aspects of your application.
All tabs include a time range selector and time unit selector to customize the granularity and range of the displayed data.
<video src={useBaseUrl("/images/llms/tracing/overview_demo.mp4")} controls loop autoPlay muted aria-label="Experiment Overview Tab" />
The Usage tab displays key metrics about your trace requests over time:
The Quality tab provides insights into the quality of your LLM and AI agent outputs:
The Tool Calls tab provides insights into agent tool usage:
The dashboard requires traces to be logged to your experiment before any data appears. To get started:
The dashboard requires a SQL-backed tracking store (SQLite, PostgreSQL, or MySQL). If you are using the default file-based store, the dashboard charts will not render.
To fix this, migrate to a SQL-backed store:
# Migrate existing data from file store to SQLite
mlflow migrate-filestore --source /path/to/mlruns --target sqlite:///path/to/mlflow.db
# Start the server with the SQL backend
mlflow server --backend-store-uri sqlite:///path/to/mlflow.db
For more details, see the migration guide.