Labsco
getsentry logo

sentry-span-streaming-js

โ˜… 233

by getsentry ยท part of getsentry/sentry-for-claude

Migrate JavaScript SDK to Sentry span streaming (span-first trace lifecycle). Use when asked to "enable span streaming", "migrate to span streaming", "use traceLifecycle stream", "add spanStreamingIntegration", or switch from transaction-based to streamed span delivery in a JavaScript project.

๐Ÿ”Œ This skill ships inside the sentry plugin โ€” install the plugin and you also get 1 slash commands, an MCP server.

This is the playbook your agent receives when the skill activates โ€” you don't need to read it to use the skill, but it's here to audit before installing.

All Skills > Feature Setup > Span Streaming (JavaScript)

Sentry Span Streaming Migration (JavaScript)

Migrate from the default transaction-based trace lifecycle (static) to span streaming (stream), where spans are sent individually as they complete instead of being batched into a transaction at the end.

This skill covers the JavaScript SDK (Browser, Node.js, Bun, Deno, Cloudflare). For Python, see Span Streaming (Python). For Dart/Flutter, see Span Streaming (Dart).

Invoke This Skill When

  • User asks to "enable span streaming" or "migrate to span streaming" in a JavaScript project
  • User wants to switch from transaction-based to streamed span delivery
  • User mentions traceLifecycle, spanStreamingIntegration, or withStreamedSpan
  • User wants lower latency span delivery or per-span processing

Phase 1: Detect

1.1 Detect Environment

# Detect if browser, server, or both
grep -rn "from '@sentry/browser'\|from '@sentry/react'\|from '@sentry/vue'\|from '@sentry/angular'\|from '@sentry/svelte'\|from '@sentry/nextjs'\|from '@sentry/nuxt'\|from '@sentry/sveltekit'\|from '@sentry/remix'\|from '@sentry/solidstart'\|from '@sentry/astro'\|from '@sentry/react-router'" --include="*.ts" --include="*.js" --include="*.tsx" --include="*.jsx" --include="*.mjs" -l 2>/dev/null | head -20

grep -rn "from '@sentry/node'\|from '@sentry/bun'\|from '@sentry/deno'\|from '@sentry/cloudflare'" --include="*.ts" --include="*.js" --include="*.tsx" --include="*.jsx" --include="*.mjs" -l 2>/dev/null | head -20

1.2. Find Existing Sentry Config

# Find Sentry.init calls
grep -rn "Sentry\.init\|init({" --include="*.ts" --include="*.js" --include="*.tsx" --include="*.jsx" --include="*.mjs" -l 2>/dev/null | head -20

# Find beforeSendSpan usage
grep -rn "beforeSendSpan" --include="*.ts" --include="*.js" --include="*.tsx" --include="*.jsx" --include="*.mjs" -l 2>/dev/null

# Find beforeSendTransaction usage
grep -rn "beforeSendTransaction" --include="*.ts" --include="*.js" --include="*.tsx" --include="*.jsx" --include="*.mjs" -l 2>/dev/null

# Find ignoreSpans usage
grep -rn "ignoreSpans" --include="*.ts" --include="*.js" --include="*.tsx" --include="*.jsx" --include="*.mjs" -l 2>/dev/null

1.3 Classify Environment

Based on detection results, classify each Sentry.init call as:

EnvironmentPackagesMigration Path
Browser@sentry/browser, @sentry/react, @sentry/vue, @sentry/angular, @sentry/svelteAdd spanStreamingIntegration()
Server@sentry/node, @sentry/bun, @sentry/deno, @sentry/cloudflareAdd traceLifecycle: 'stream'
Framework (both)@sentry/nextjs, @sentry/nuxt, @sentry/sveltekit, @sentry/remix, @sentry/astro, @sentry/solidstart, @sentry/react-routerMigrate both client and server configs separately

Phase 2: Migrate

Prerequisites: Sentry JavaScript SDK >=10.61.0 with tracing enabled (tracesSampleRate or tracesSampler configured).

Apply changes to each Sentry.init call. Work through each file identified above.

2.1 Enable Span Streaming

Server-Side SDKs

Add traceLifecycle: 'stream' to Sentry.init():

// Before
Sentry.init({
  dsn: '...',
  tracesSampleRate: 1.0,
});

// After
Sentry.init({
  dsn: '...',
  tracesSampleRate: 1.0,
  traceLifecycle: 'stream',
});

Browser-Side SDKs

Add Sentry.spanStreamingIntegration() to the integrations array. The integration automatically enables traceLifecycle: 'stream' โ€” you do not need to set it manually.

// Before
Sentry.init({
  dsn: '...',
  integrations: [
    Sentry.browserTracingIntegration(),
  ],
  tracesSampleRate: 1.0,
});

// After
Sentry.init({
  dsn: '...',
  integrations: [
    Sentry.spanStreamingIntegration(),
    Sentry.browserTracingIntegration(),
  ],
  tracesSampleRate: 1.0,
});

The order of spanStreamingIntegration() relative to other integrations does not matter.

Framework SDKs (Client + Server)

Apply the browser migration to client config files and the server migration to server config files. Common patterns:

FrameworkClient ConfigServer Config
Next.jssentry.client.config.tssentry.server.config.ts, sentry.edge.config.ts
NuxtClient-side Sentry.init in moduleServer-side Sentry.init in module
SvelteKitsrc/hooks.client.tssrc/hooks.server.ts
Remixentry.client.tsxentry.server.tsx
AstroClient-side initServer-side init

2.2 Migrate beforeSendSpan

If the user has a beforeSendSpan callback, it must be wrapped with Sentry.withStreamedSpan() to work in streaming mode. Without this wrapper, the SDK falls back to static mode.

The callback shape also changes:

  • description is now name
  • data is now attributes
  • The span object is StreamedSpanJSON instead of SpanJSON
// Before (static mode)
Sentry.init({
  beforeSendSpan: (span) => {
    if (span.description?.includes('/health')) {
      span.description = '[filtered]';
    }
    // 'data' contains span attributes
    delete span.data?.['http.request.body'];
    return span;
  },
});

// After (streaming mode)
Sentry.init({
  beforeSendSpan: Sentry.withStreamedSpan((span) => {
    if (span.name?.includes('/health')) {
      span.name = '[filtered]';
    }
    // 'attributes' replaces 'data'
    if (span.attributes) {
      delete span.attributes['http.request.body'];
    }
    return span;
  }),
});

Key differences in the callback:

Static (SpanJSON)Streaming (StreamedSpanJSON)
span.descriptionspan.name
span.data (processed attributes)span.attributes (raw attributes)
span.timestamp (end time)span.end_timestamp
span.status (optional string)span.status ('ok' or 'error')
span.opspan.attributes['sentry.op']

Returning null from beforeSendSpan does not drop the span โ€” it is ignored and a warning is logged.

2.3 Migrate setTag(s) to setAttribute(s)

In streaming mode, tags no longer apply to streamed spans โ€” only attributes do. Wherever the user sets tags via Sentry.setTag / Sentry.setTags or scope.setTag / scope.setTags (e.g. via withScope(), getCurrentScope(), getGlobalScope()), add an equivalent setAttribute / setAttributes call with the same key/value pairs so the data still reaches spans.

Tags continue to work for errors, so keep the existing setTag(s) calls and add the attribute calls alongside them โ€” do not replace one with the other.

Find existing usage:

grep -rn "\.setTag\b\|\.setTags\b\|setTag(\|setTags(" --include="*.ts" --include="*.js" --include="*.tsx" --include="*.jsx" --include="*.mjs" 2>/dev/null

Apply the migration. Most setTag(s) calls run in a code path that also produces spans, so default to adding the attribute equivalent unless the call is clearly scoped to error reporting only.

// Before
Sentry.setTag('feature', 'checkout');
Sentry.setTags({ tier: 'premium', region: 'eu' });

// After โ€” keep the tags, add matching attributes
Sentry.setTag('feature', 'checkout');
Sentry.setAttribute('feature', 'checkout');

Sentry.setTags({ tier: 'premium', region: 'eu' });
Sentry.setAttributes({ tier: 'premium', region: 'eu' });

The same applies to scope-based calls:

// Before
Sentry.withScope((scope) => {
  scope.setTag('job', 'sync-orders');
  // ...
});
Sentry.getCurrentScope().setTag('job', 'sync-orders')

// After
Sentry.withScope((scope) => {
  scope.setTag('job', 'sync-orders');
  scope.setAttribute('job', 'sync-orders');
  // ...
});
Sentry.getCurrentScope().setTag('job', 'sync-orders')
Sentry.getCurrentScope().setAttribute('job', 'sync-orders')

setAttribute(s) is available from SDK >=10.61.0 โ€” confirm the prerequisite version before applying this step.

2.4 Remove or Replace beforeSendTransaction

beforeSendTransaction has no effect in streaming mode. Spans are sent individually, not batched into transactions.

// Before
Sentry.init({
  beforeSendTransaction: (event) => {
    // This entire callback is ignored in streaming mode
    if (event.transaction === '/health') {
      return null;
    }
    return event;
  },
});

Migration paths depending on what beforeSendTransaction was used for:

Use CaseStreaming Replacement
Drop spans by name/routeUse ignoreSpans option
Modify span data before sendUse beforeSendSpan with withStreamedSpan
Filter by transaction nameUse ignoreSpans with string/RegExp pattern
Add tags/context to transactionUse beforeSendSpan with withStreamedSpan

Remove the beforeSendTransaction option from Sentry.init() after migrating its logic.

2.5 Configure ignoreSpans (Optional)

ignoreSpans works in both static and streaming modes, but the filter is evaluated at different points in the span lifecycle:

  • Streaming mode: evaluated when the span starts. Only data available at span start โ€” the span name and the attributes set at creation โ€” is taken into account.
  • Static mode: evaluated when the root span ends. Only data available at that point โ€” the span name and attributes โ€” is taken into account.

In both modes, a match prevents the span from being recorded or sent. Because matching can run as early as span start (streaming), only the span name and attributes set when the span begins are guaranteed to be available โ€” do not rely on attributes added later in the span's lifetime.

Sentry.init({
  traceLifecycle: 'stream',
  ignoreSpans: [
    // String match against span name
    '/health',
    '/ready',

    // RegExp match against span name
    /^OPTIONS /,

    // Object filter โ€” all conditions must match
    {
      op: 'middleware.handle',
      name: /^corsMiddleware/,
    },

    // Filter by attributes (string = substring match, RegExp for patterns)
    {
      op: 'http.server',
      attributes: {
        'http.route': /^\/internal\//,
      },
    },
  ],
});

Filter object properties:

PropertyTypeMatches Against
namestring | RegExpSpan name (description)
opstring | RegExpSpan operation
attributesRecord<string, string | RegExp | number | boolean | Array>Span attributes

When multiple properties are specified in a filter object, all must match for the span to be ignored.

2.6 Set Up Browser Profiling (Optional)

When using span streaming in the browser, use the v2 profiling options โ€” not the legacy profilesSampleRate. The legacy option is deprecated and does not integrate with the span streaming lifecycle.

Add browserProfilingIntegration() and configure the two v2 options:

// Before (legacy profiling โ€” do NOT use with span streaming)
Sentry.init({
  integrations: [
    Sentry.browserTracingIntegration(),
  ],
  tracesSampleRate: 1.0,
  profilesSampleRate: 0.5, // deprecated
});

// After (v2 profiling with span streaming)
Sentry.init({
  integrations: [
    Sentry.spanStreamingIntegration(),
    Sentry.browserTracingIntegration(),
    Sentry.browserProfilingIntegration(),
  ],
  tracesSampleRate: 1.0,
  profileSessionSampleRate: 1.0,
  profileLifecycle: 'trace',
});

v2 profiling options:

OptionTypeDescription
profileSessionSampleRatenumber (0โ€“1)Percentage of user sessions that have profiling enabled. Default: 0 (disabled).
profileLifecycle'trace' | 'manual''trace': profiler runs automatically while sampled root spans exist. 'manual': start/stop profiler explicitly via Sentry.uiProfiler.startProfiler() / stopProfiler(). Default: 'manual'.

profileLifecycle: 'trace' requires tracing to be enabled (tracesSampleRate or tracesSampler). The profiler starts when a root span begins and stops when no sampled root spans remain. Profile chunks are sent independently every 60 seconds or when the last root span ends.

Do not mix legacy and v2 options. If profilesSampleRate is set, profileSessionSampleRate has no effect and the SDK logs a warning.


Phase 3: Verify

After applying changes, verify the migration works correctly.

3.1 Build Check

# TypeScript check
npx tsc --noEmit 2>&1 | head -30

# Build
npm run build 2>&1 | tail -20

3.2 Runtime Verification

Instruct the user to verify in their browser devtools or server logs:

  1. Check network tab: Span envelopes should appear as individual requests with content type application/vnd.sentry.items.span.v2+json rather than transaction envelopes
  2. Check Sentry dashboard: Spans should appear in the Traces view shortly after they complete, without waiting for the full transaction to finish
  3. Check for fallback warnings: If the SDK logs warnings about falling back to static mode, the beforeSendSpan callback is likely missing the withStreamedSpan wrapper

3.3 Common Issues

SymptomCauseFix
SDK falls back to static modebeforeSendSpan not wrapped with withStreamedSpanWrap callback: Sentry.withStreamedSpan(callback)
beforeSendTransaction not calledExpected in streaming modeMigrate logic to beforeSendSpan or ignoreSpans
Spans still arrive as transactionstraceLifecycle not set or integration missingServer: add traceLifecycle: 'stream'; Browser: add spanStreamingIntegration()
Type errors on span.descriptionStreamedSpanJSON uses name not descriptionChange span.description to span.name in callback
Type errors on span.dataStreamedSpanJSON uses attributes not dataChange span.data to span.attributes in callback
profileSessionSampleRate has no effectLegacy profilesSampleRate is also setRemove profilesSampleRate and use only profileSessionSampleRate + profileLifecycle
Tags missing from spansTags do not apply to streamed spansAdd matching setAttribute(s) calls alongside existing setTag(s) calls

Quick Reference

Minimal Server Setup

import * as Sentry from '@sentry/node';

Sentry.init({
  dsn: '__DSN__',
  tracesSampleRate: 1.0,
  traceLifecycle: 'stream',
});

Minimal Browser Setup

import * as Sentry from '@sentry/browser';

Sentry.init({
  dsn: '__DSN__',
  integrations: [
    Sentry.spanStreamingIntegration(),
    Sentry.browserTracingIntegration(),
  ],
  tracesSampleRate: 1.0,
});

Browser Setup with Profiling

import * as Sentry from '@sentry/browser';

Sentry.init({
  dsn: '__DSN__',
  integrations: [
    Sentry.spanStreamingIntegration(),
    Sentry.browserTracingIntegration(),
    Sentry.browserProfilingIntegration(),
  ],
  tracesSampleRate: 1.0,
  profileSessionSampleRate: 1.0,
  profileLifecycle: 'trace',
});

Full Migration Checklist

  • SDK version is >=10.61.0
  • Server configs: added traceLifecycle: 'stream'
  • Browser configs: added spanStreamingIntegration()
  • beforeSendSpan callbacks wrapped with Sentry.withStreamedSpan()
  • beforeSendSpan callbacks updated: description -> name, data -> attributes
  • setTag(s) / scope.setTag(s) calls paired with matching setAttribute(s) calls
  • beforeSendTransaction logic migrated to beforeSendSpan or ignoreSpans
  • beforeSendTransaction removed from config
  • (If profiling) Replaced profilesSampleRate with profileSessionSampleRate + profileLifecycle
  • (If profiling) Added browserProfilingIntegration() to integrations
  • Build passes with no type errors
  • Spans visible in Sentry dashboard