Anthropic

Adds instrumentation for Anthropic API.

Import name: Sentry.anthropicAIIntegration

The anthropicAIIntegration adds instrumentation for the @anthropic-ai/sdk to capture spans by automatically wrapping Anthropic client calls and recording LLM interactions with configurable input/output recording.

It is enabled by default and will automatically capture spans for Anthropic API method calls. You can opt-in to capture inputs and outputs by setting recordInputs and recordOutputs in the integration config:

Copied
Sentry.init({
  dsn: "
example-org / example-project
"
,
tracesSampleRate: 1.0, integrations: [ Sentry.anthropicAIIntegration({ recordInputs: true, recordOutputs: true, }), ], });

Type: boolean

Records inputs to Anthropic API method calls (such as prompts and messages).

Defaults to true if sendDefaultPii is true.

Copied
Sentry.init({
  integrations: [Sentry.anthropicAIIntegration({ recordInputs: true })],
});

Type: boolean

Records outputs from Anthropic API method calls (such as generated text and responses).

Defaults to true if sendDefaultPii is true.

Copied
Sentry.init({
  integrations: [Sentry.anthropicAIIntegration({ recordOutputs: true })],
});

By default this integration adds tracing support to Anthropic API method calls including:

  • messages.create() - Create messages with Claude models
  • messages.stream() - Stream messages with Claude models
  • messages.countTokens() - Count tokens for messages
  • models.get() - Get model information
  • completions.create() - Create completions (legacy)
  • models.retrieve() - Retrieve model details
  • beta.messages.create() - Beta messages API

The integration will automatically detect streaming vs non-streaming requests and handle them appropriately.

  • @anthropic-ai/sdk: >=0.19.2 <1.0.0
Was this helpful?
Help improve this content
Our documentation is open source and available on GitHub. Your contributions are welcome, whether fixing a typo (drat!) or suggesting an update ("yeah, this would be better").