Skip to main content
Module

x/sentry/index.mjs>getTraceMetaTags

The Official Sentry Deno SDK
Latest
function getTraceMetaTags
import { getTraceMetaTags } from "https://deno.land/x/sentry@8.30.0/index.mjs";

Returns a string of meta tags that represent the current trace data.

You can use this to propagate a trace from your server-side rendered Html to the browser. This function returns up to two meta tags, sentry-trace and baggage, depending on the current trace data state.

Examples

Usage example:

function renderHtml() {
  return `
    <head>
      ${getTraceMetaTags()}
    </head>
  `;
}

Returns

string