@sentry/core
Version:
Base implementation for all Sentry JavaScript SDKs
34 lines (30 loc) • 836 B
JavaScript
Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });
const traceData = require('./traceData.js');
/**
* 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.
*
* @example
* Usage example:
*
* ```js
* function renderHtml() {
* return `
* <head>
* ${getTraceMetaTags()}
* </head>
* `;
* }
* ```
*
*/
function getTraceMetaTags() {
return Object.entries(traceData.getTraceData())
.map(([key, value]) => `<meta name="${key}" content="${value}"/>`)
.join('\n');
}
exports.getTraceMetaTags = getTraceMetaTags;
//# sourceMappingURL=meta.js.map