Skip to main content
Mastra 1.0 is available 🎉 Read announcement

Observability Overview

Mastra provides observability features for AI applications. Monitor LLM operations, trace agent decisions, and debug complex workflows with tools that understand AI-specific patterns.

Key Features
Direct link to Key Features

Tracing
Direct link to Tracing

Specialized tracing for AI operations that captures:

  • Model interactions: Token usage, latency, prompts, and completions
  • Agent execution: Decision paths, tool calls, and memory operations
  • Workflow steps: Branching logic, parallel execution, and step outputs
  • Automatic instrumentation: Tracing with decorators

Storage Requirements
Direct link to Storage Requirements

The DefaultExporter persists traces to your configured storage backend. Not all storage providers support observability—for the full list, see Storage Provider Support.

For production environments with high traffic, we recommend using ClickHouse for the observability domain via composite storage. See Production Recommendations for details.

Quick Start
Direct link to Quick Start

Configure Observability in your Mastra instance:

src/mastra/index.ts
import { Mastra } from "@mastra/core";
import { PinoLogger } from "@mastra/loggers";
import { LibSQLStore } from "@mastra/libsql";
import {
Observability,
DefaultExporter,
CloudExporter,
SensitiveDataFilter,
} from "@mastra/observability";

export const mastra = new Mastra({
logger: new PinoLogger(),
storage: new LibSQLStore({
id: 'mastra-storage',
url: "file:./mastra.db", // Storage is required for tracing
}),
observability: new Observability({
configs: {
default: {
serviceName: "mastra",
exporters: [
new DefaultExporter(), // Persists traces to storage for Mastra Studio
new CloudExporter(), // Sends traces to Mastra Cloud (if MASTRA_CLOUD_ACCESS_TOKEN is set)
],
spanOutputProcessors: [
new SensitiveDataFilter(), // Redacts sensitive data like passwords, tokens, keys
],
},
},
}),
});
Serverless environments

The file:./mastra.db storage URL uses the local filesystem, which doesn't work in serverless environments like Vercel, AWS Lambda, or Cloudflare Workers. For serverless deployments, use external storage. See the Vercel deployment guide for a complete example.

With this basic setup, you will see Traces and Logs in both Studio and in Mastra Cloud.

We also support various external tracing providers like MLflow, Langfuse, Braintrust, and any OpenTelemetry-compatible platform (Datadog, New Relic, SigNoz, etc.). See more about this in the Tracing documentation.

What's Next?
Direct link to What's Next?

On this page