docs/src/content/en/reference/observability/tracing/bridges/otel.mdx
import PropertiesTable from "@site/src/components/PropertiesTable";
:::warning
The OpenTelemetry Bridge is currently experimental. APIs and configuration options may change in future releases.
:::
Enables bidirectional integration between Mastra tracing and OpenTelemetry infrastructure. Creates native OTEL spans for Mastra operations and inherits context from active OTEL spans.
new OtelBridge()
executeInContextexecuteInContext<T>(spanId: string, fn: () => Promise<T>): Promise<T>
Executes an async function within the OTEL context of a Mastra span. OTEL-instrumented code running inside the function will have correct parent relationships.
<PropertiesTable props={[ { name: 'spanId', type: 'string', description: 'The ID of the Mastra span to use as context', required: true, }, { name: 'fn', type: '() => Promise<T>', description: 'The async function to execute within the span context', required: true, }, ]} />
Returns: Promise<T> - The result of the function execution.
executeInContextSyncexecuteInContextSync<T>(spanId: string, fn: () => T): T
Executes a synchronous function within the OTEL context of a Mastra span.
<PropertiesTable props={[ { name: 'spanId', type: 'string', description: 'The ID of the Mastra span to use as context', required: true, }, { name: 'fn', type: '() => T', description: 'The synchronous function to execute within the span context', required: true, }, ]} />
Returns: T - The result of the function execution.
async shutdown(): Promise<void>
Shuts down the bridge and cleans up resources. Ends any spans that weren't properly closed.
import { Mastra } from '@mastra/core'
import { Observability } from '@mastra/observability'
import { OtelBridge } from '@mastra/otel-bridge'
const mastra = new Mastra({
observability: new Observability({
configs: {
default: {
serviceName: 'my-service',
bridge: new OtelBridge(),
},
},
}),
agents: { myAgent },
})
The bridge can be used alongside exporters. The bridge handles OTEL context, while exporters send data to additional destinations:
import { Mastra } from '@mastra/core'
import { Observability, DefaultExporter } from '@mastra/observability'
import { OtelBridge } from '@mastra/otel-bridge'
import { LangfuseExporter } from '@mastra/langfuse'
const mastra = new Mastra({
observability: new Observability({
configs: {
default: {
serviceName: 'my-service',
bridge: new OtelBridge(), // Handles OTEL context
exporters: [
new DefaultExporter(), // Studio access
new LangfuseExporter({
// Additional destination
publicKey: process.env.LANGFUSE_PUBLIC_KEY,
secretKey: process.env.LANGFUSE_SECRET_KEY,
}),
],
},
},
}),
})
OpenTelemetry setup requirementsThe OtelBridge requires an active OpenTelemetry SDK to function. The bridge reads from OTEL's ambient context.
See the OtelBridge Guide for complete setup instructions, including how to configure OTEL instrumentation and run your application.
The OtelBridge supports trace tagging for categorization and filtering. Tags are only applied to root spans and are included as the mastra.tags attribute on native OTEL spans.
const result = await agent.generate('Hello', {
tracingOptions: {
tags: ['production', 'experiment-v2', 'user-request'],
},
})
Tags are stored as a JSON-stringified array in the mastra.tags span attribute:
{
"mastra.tags": "[\"production\",\"experiment-v2\",\"user-request\"]"
}
This format ensures compatibility with all OTEL-compatible backends and collectors.