Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line numberDiff line numberDiff line change
Expand Up@@ -15,7 +15,7 @@ sentryTest('cultureContextIntegration captures locale, timezone, and calendar',

const pageloadSpan = spans.find(s => getSpanOp(s) === 'pageload');

expect(pageloadSpan!.attributes?.['culture.locale']).toEqual({ type: 'string', value: expect.any(String) });
expect(pageloadSpan!.attributes?.['culture.timezone']).toEqual({ type: 'string', value: expect.any(String) });
expect(pageloadSpan!.attributes?.['culture.calendar']).toEqual({ type: 'string', value: expect.any(String) });
expect(pageloadSpan!.attributes['culture.locale']).toEqual({ type: 'string', value: expect.any(String) });
expect(pageloadSpan!.attributes['culture.timezone']).toEqual({ type: 'string', value: expect.any(String) });
expect(pageloadSpan!.attributes['culture.calendar']).toEqual({ type: 'string', value: expect.any(String) });
});
Original file line numberDiff line numberDiff line change
Expand Up@@ -15,12 +15,12 @@ sentryTest('httpContextIntegration captures url, user-agent, and referer', async

const pageloadSpan = spans.find(s => getSpanOp(s) === 'pageload');

expect(pageloadSpan!.attributes?.['url.full']).toEqual({ type: 'string', value: expect.any(String) });
expect(pageloadSpan!.attributes?.['http.request.header.user_agent']).toEqual({
expect(pageloadSpan!.attributes['url.full']).toEqual({ type: 'string', value: expect.any(String) });
expect(pageloadSpan!.attributes['http.request.header.user_agent']).toEqual({
type: 'string',
value: expect.any(String),
});
expect(pageloadSpan!.attributes?.['http.request.header.referer']).toEqual({
expect(pageloadSpan!.attributes['http.request.header.referer']).toEqual({
type: 'string',
value: 'https://sentry.io/',
});
Expand Down
Original file line numberDiff line numberDiff line change
Expand Up@@ -22,15 +22,15 @@ sentryTest(
const rootSpan = spans.find(s => s.name === 'root-fibonacci');
expect(rootSpan).toBeDefined();

expect(rootSpan!.attributes?.['thread.id']).toEqual({ type: 'string', value: '0' });
expect(rootSpan!.attributes?.['thread.name']).toEqual({ type: 'string', value: 'main' });
expect(rootSpan!.attributes['thread.id']).toEqual({ type: 'string', value: '0' });
expect(rootSpan!.attributes['thread.name']).toEqual({ type: 'string', value: 'main' });

const childSpans = spans.filter(s => s.name === 'child-span-1' || s.name === 'child-span-2');
expect(childSpans.length).toBeGreaterThanOrEqual(1);

for (const child of childSpans) {
expect(child.attributes?.['thread.id']).toEqual({ type: 'string', value: '0' });
expect(child.attributes?.['thread.name']).toEqual({ type: 'string', value: 'main' });
expect(child.attributes['thread.id']).toEqual({ type: 'string', value: '0' });
expect(child.attributes['thread.name']).toEqual({ type: 'string', value: 'main' });
}
},
);
Original file line numberDiff line numberDiff line change
Expand Up@@ -26,7 +26,7 @@ sentryTest('beforeSendSpan applies changes to streamed span', async ({ getLocalT
},
},
]);
expect(pageloadSpan.attributes?.['sentry.custom_attribute']).toEqual({
expect(pageloadSpan.attributes['sentry.custom_attribute']).toEqual({
type: 'string',
value: 'customAttributeValue',
});
Expand Down
Original file line numberDiff line numberDiff line change
Expand Up@@ -33,7 +33,7 @@ sentryTest(
expect(pageloadSpan).toBeDefined();

// Span attribute: sentry.replay_id
expect(pageloadSpan!.attributes?.['sentry.replay_id']).toEqual({
expect(pageloadSpan!.attributes['sentry.replay_id']).toEqual({
type: 'string',
value: replay.session?.id,
});
Expand Down
Original file line numberDiff line numberDiff line change
Expand Up@@ -14,5 +14,5 @@ sentryTest('finishes streamed pageload span when the page goes background', asyn

// TODO: Is this what we want?
expect(pageloadSpan.status).toBe('ok');
expect(pageloadSpan.attributes?.['sentry.cancellation_reason']?.value).toBe('document.hidden');
expect(pageloadSpan.attributes['sentry.cancellation_reason']?.value).toBe('document.hidden');
});
Original file line numberDiff line numberDiff line change
Expand Up@@ -21,7 +21,7 @@ sentryTest.describe('When `consistentTraceSampling` is `true`', () => {
const pageloadSampleRand = Number(envelope[0].trace?.sample_rand);
const pageloadSpan = envelope[1][0][1].items.find(s => getSpanOp(s) === 'pageload')!;

expect(pageloadSpan.attributes?.['sentry.sample_rate']?.value).toBe(1);
expect(pageloadSpan.attributes['sentry.sample_rate']?.value).toBe(1);
expect(Number.isNaN(pageloadSampleRand)).toBe(false);
expect(pageloadSampleRand).toBeGreaterThanOrEqual(0);
expect(pageloadSampleRand).toBeLessThanOrEqual(1);
Expand DownExpand Up@@ -101,7 +101,7 @@ sentryTest.describe('When `consistentTraceSampling` is `true`', () => {

const pageloadSpan = envelope[1][0][1].items.find(s => getSpanOp(s) === 'pageload')!;

expect(pageloadSpan.attributes?.['sentry.sample_rate']?.value).toBe(1);
expect(pageloadSpan.attributes['sentry.sample_rate']?.value).toBe(1);

return { pageloadSpan, pageloadSampleRand };
});
Expand All@@ -125,8 +125,8 @@ sentryTest.describe('When `consistentTraceSampling` is `true`', () => {

expect(fetchTraceSampleRand).toBe(pageloadSampleRand);

expect(fetchTraceSpan.attributes?.['sentry.sample_rate']?.value).toEqual(
pageloadSpan.attributes?.['sentry.sample_rate']?.value,
expect(fetchTraceSpan.attributes['sentry.sample_rate']?.value).toEqual(
pageloadSpan.attributes['sentry.sample_rate']?.value,
);
expect(fetchTraceSpan.trace_id).not.toEqual(pageloadSpan.trace_id);

Expand Down
Original file line numberDiff line numberDiff line change
Expand Up@@ -32,8 +32,8 @@ sentryTest.describe('When `consistentTraceSampling` is `true` and page contains
expect(Number(envelope[0].trace?.sample_rate)).toBe(metaTagSampleRate);

// since the local sample rate was not applied, the sample rate attribute shouldn't be set
expect(span.attributes?.['sentry.sample_rate']).toBeUndefined();
expect(span.attributes?.[SEMANTIC_ATTRIBUTE_SENTRY_PREVIOUS_TRACE_SAMPLE_RATE]).toBeUndefined();
expect(span.attributes['sentry.sample_rate']).toBeUndefined();
expect(span.attributes[SEMANTIC_ATTRIBUTE_SENTRY_PREVIOUS_TRACE_SAMPLE_RATE]).toBeUndefined();

return span;
});
Expand All@@ -57,10 +57,10 @@ sentryTest.describe('When `consistentTraceSampling` is `true` and page contains
expect(envelope[0].trace?.sampled).toBe('true');

// since the local sample rate was not applied, the sample rate attribute shouldn't be set
expect(span.attributes?.['sentry.sample_rate']).toBeUndefined();
expect(span.attributes['sentry.sample_rate']).toBeUndefined();

// but we need to set this attribute to still be able to correctly add the sample rate to the DSC (checked above in trace header)
expect(span.attributes?.[SEMANTIC_ATTRIBUTE_SENTRY_PREVIOUS_TRACE_SAMPLE_RATE]?.value).toBe(metaTagSampleRate);
expect(span.attributes[SEMANTIC_ATTRIBUTE_SENTRY_PREVIOUS_TRACE_SAMPLE_RATE]?.value).toBe(metaTagSampleRate);

return span;
});
Expand All@@ -86,10 +86,10 @@ sentryTest.describe('When `consistentTraceSampling` is `true` and page contains
expect(envelope[0].trace?.sampled).toEqual('true');

// since the local sample rate was not applied, the sample rate attribute shouldn't be set
expect(navSpan.attributes?.['sentry.sample_rate']).toBeUndefined();
expect(navSpan.attributes['sentry.sample_rate']).toBeUndefined();

// but we need to set this attribute to still be able to correctly add the sample rate to the DSC (checked above in trace header)
expect(navSpan.attributes?.[SEMANTIC_ATTRIBUTE_SENTRY_PREVIOUS_TRACE_SAMPLE_RATE]?.value).toBe(metaTagSampleRate);
expect(navSpan.attributes[SEMANTIC_ATTRIBUTE_SENTRY_PREVIOUS_TRACE_SAMPLE_RATE]?.value).toBe(metaTagSampleRate);
});
});

Expand All@@ -115,8 +115,8 @@ sentryTest.describe('When `consistentTraceSampling` is `true` and page contains
expect(Number(envelope[0].trace?.sample_rate)).toBe(metaTagSampleRate);

// since the local sample rate was not applied, the sample rate attribute shouldn't be set
expect(span.attributes?.['sentry.sample_rate']).toBeUndefined();
expect(span.attributes?.[SEMANTIC_ATTRIBUTE_SENTRY_PREVIOUS_TRACE_SAMPLE_RATE]).toBeUndefined();
expect(span.attributes['sentry.sample_rate']).toBeUndefined();
expect(span.attributes[SEMANTIC_ATTRIBUTE_SENTRY_PREVIOUS_TRACE_SAMPLE_RATE]).toBeUndefined();

return span;
});
Expand All@@ -140,8 +140,8 @@ sentryTest.describe('When `consistentTraceSampling` is `true` and page contains

expect(fetchTraceSampleRand).toEqual(metaTagSampleRand);

expect(fetchTraceSpan.attributes?.['sentry.sample_rate']).toBeUndefined();
expect(fetchTraceSpan.attributes?.[SEMANTIC_ATTRIBUTE_SENTRY_PREVIOUS_TRACE_SAMPLE_RATE]?.value).toBe(
expect(fetchTraceSpan.attributes['sentry.sample_rate']).toBeUndefined();
expect(fetchTraceSpan.attributes[SEMANTIC_ATTRIBUTE_SENTRY_PREVIOUS_TRACE_SAMPLE_RATE]?.value).toBe(
metaTagSampleRate,
);

Expand Down
Original file line numberDiff line numberDiff line change
Expand Up@@ -32,7 +32,7 @@ sentryTest.describe('When `consistentTraceSampling` is `true`', () => {
const envelope = await pageloadEnvelopePromise;
const pageloadSpan = envelope[1][0][1].items.find(s => getSpanOp(s) === 'pageload')!;

expect(pageloadSpan.attributes?.[SEMANTIC_ATTRIBUTE_SENTRY_SAMPLE_RATE]?.value).toBe(1);
expect(pageloadSpan.attributes[SEMANTIC_ATTRIBUTE_SENTRY_SAMPLE_RATE]?.value).toBe(1);
expect(Number(envelope[0].trace?.sample_rand)).toBeGreaterThanOrEqual(0);

return { pageloadSpan };
Expand DownExpand Up@@ -96,7 +96,7 @@ sentryTest.describe('When `consistentTraceSampling` is `true`', () => {
const envelope = await customEnvelopePromise;
const customTrace2Span = envelope[1][0][1].items.find(s => getSpanOp(s) === 'custom')!;

expect(customTrace2Span.attributes?.[SEMANTIC_ATTRIBUTE_SENTRY_SAMPLE_RATE]?.value).toBe(1);
expect(customTrace2Span.attributes[SEMANTIC_ATTRIBUTE_SENTRY_SAMPLE_RATE]?.value).toBe(1);
expect(customTrace2Span.trace_id).not.toEqual(pageloadSpan.trace_id);
expect(customTrace2Span.parent_span_id).toBeUndefined();

Expand DownExpand Up@@ -129,7 +129,7 @@ sentryTest.describe('When `consistentTraceSampling` is `true`', () => {
const envelope = await navigationEnvelopePromise;
const navigationSpan = envelope[1][0][1].items.find(s => getSpanOp(s) === 'navigation')!;

expect(navigationSpan.attributes?.[SEMANTIC_ATTRIBUTE_SENTRY_SAMPLE_RATE]?.value).toBe(1);
expect(navigationSpan.attributes[SEMANTIC_ATTRIBUTE_SENTRY_SAMPLE_RATE]?.value).toBe(1);
expect(navigationSpan.trace_id).not.toEqual(customTrace2Span.trace_id);
expect(navigationSpan.parent_span_id).toBeUndefined();

Expand Down
Original file line numberDiff line numberDiff line change
Expand Up@@ -41,7 +41,7 @@ sentryTest("navigation spans link back to previous trace's root span", async ({
},
]);

expect(navigation1Span.attributes?.['sentry.previous_trace']).toEqual({
expect(navigation1Span.attributes['sentry.previous_trace']).toEqual({
type: 'string',
value: `${pageloadTraceId}-${pageloadSpan.span_id}-1`,
});
Expand All@@ -60,7 +60,7 @@ sentryTest("navigation spans link back to previous trace's root span", async ({
},
]);

expect(navigation2Span.attributes?.['sentry.previous_trace']).toEqual({
expect(navigation2Span.attributes['sentry.previous_trace']).toEqual({
type: 'string',
value: `${navigation1TraceId}-${navigation1Span.span_id}-1`,
});
Expand Down
Original file line numberDiff line numberDiff line change
Expand Up@@ -34,7 +34,7 @@ sentryTest('includes a span link to a previously negatively sampled span', async
},
]);

expect(navigationSpan.attributes?.['sentry.previous_trace']).toEqual({
expect(navigationSpan.attributes['sentry.previous_trace']).toEqual({
type: 'string',
value: expect.stringMatching(/[a-f\d]{32}-[a-f\d]{16}-0/),
});
Expand Down
Original file line numberDiff line numberDiff line change
Expand Up@@ -30,7 +30,7 @@ sentryTest(
expect(uiSpans.length).toBeGreaterThanOrEqual(1);

const topLevelUISpan = uiSpans.find(
s => s.attributes?.['browser.script.invoker']?.value === 'https://sentry-test-site.example/path/to/script.js',
s => s.attributes['browser.script.invoker']?.value === 'https://sentry-test-site.example/path/to/script.js',
)!;

expect(topLevelUISpan).toEqual(
Expand DownExpand Up@@ -83,7 +83,7 @@ sentryTest('captures long animation frame span for event listener.', async ({ br
expect(uiSpans.length).toBeGreaterThanOrEqual(2);

const eventListenerUISpan = uiSpans.find(
s => s.attributes?.['browser.script.invoker']?.value === 'BUTTON#clickme.onclick',
s => s.attributes['browser.script.invoker']?.value === 'BUTTON#clickme.onclick',
)!;

expect(eventListenerUISpan).toEqual(
Expand Down
Original file line numberDiff line numberDiff line change
Expand Up@@ -32,7 +32,7 @@ sentryTest(
expect(uiSpans.length).toBeGreaterThanOrEqual(1);

const topLevelUISpan = uiSpans.find(
s => s.attributes?.['browser.script.invoker']?.value === 'https://sentry-test-site.example/path/to/script.js',
s => s.attributes['browser.script.invoker']?.value === 'https://sentry-test-site.example/path/to/script.js',
)!;

expect(topLevelUISpan).toEqual(
Expand DownExpand Up@@ -85,7 +85,7 @@ sentryTest('captures long animation frame span for event listener.', async ({ br
expect(uiSpans.length).toBeGreaterThanOrEqual(2);

const eventListenerUISpan = uiSpans.find(
s => s.attributes?.['browser.script.invoker']?.value === 'BUTTON#clickme.onclick',
s => s.attributes['browser.script.invoker']?.value === 'BUTTON#clickme.onclick',
)!;

expect(eventListenerUISpan).toEqual(
Expand Down
Original file line numberDiff line numberDiff line change
Expand Up@@ -25,7 +25,7 @@ sentryTest(
const span = await spanPromise;

expect(span.name).toMatch(/^GET /);
expect(span.attributes?.['sentry.origin']).toEqual({ type: 'string', value: 'auto.http.browser' });
expect(span.attributes?.['sentry.op']).toEqual({ type: 'string', value: 'http.client' });
expect(span.attributes['sentry.origin']).toEqual({ type: 'string', value: 'auto.http.browser' });
expect(span.attributes['sentry.op']).toEqual({ type: 'string', value: 'http.client' });
},
);
Original file line numberDiff line numberDiff line change
Expand Up@@ -33,22 +33,22 @@ sentryTest('captures CLS as a streamed span with source attributes', async ({ ge
const clsSpan = await clsSpanPromise;
const pageloadSpan = await pageloadSpanPromise;

expect(clsSpan.attributes?.['sentry.op']).toEqual({ type: 'string', value: 'ui.webvital.cls' });
expect(clsSpan.attributes?.['sentry.origin']).toEqual({ type: 'string', value: 'auto.http.browser.cls' });
expect(clsSpan.attributes?.['sentry.exclusive_time']).toEqual({ type: 'integer', value: 0 });
expect(clsSpan.attributes?.['user_agent.original']?.value).toEqual(expect.stringContaining('Chrome'));
expect(clsSpan.attributes['sentry.op']).toEqual({ type: 'string', value: 'ui.webvital.cls' });
expect(clsSpan.attributes['sentry.origin']).toEqual({ type: 'string', value: 'auto.http.browser.cls' });
expect(clsSpan.attributes['sentry.exclusive_time']).toEqual({ type: 'integer', value: 0 });
expect(clsSpan.attributes['user_agent.original']?.value).toEqual(expect.stringContaining('Chrome'));

// Check the CLS span carries the transaction/segment name it belongs to
expect(clsSpan.attributes?.['sentry.transaction']).toEqual({ type: 'string', value: '/index.html' });
expect(clsSpan.attributes?.['sentry.segment.name']).toEqual({ type: 'string', value: '/index.html' });
expect(clsSpan.attributes['sentry.transaction']).toEqual({ type: 'string', value: '/index.html' });
expect(clsSpan.attributes['sentry.segment.name']).toEqual({ type: 'string', value: '/index.html' });

// Check browser.web_vital.cls.source attributes
expect(clsSpan.attributes?.['browser.web_vital.cls.source.1']?.value).toEqual(
expect(clsSpan.attributes['browser.web_vital.cls.source.1']?.value).toEqual(
expect.stringContaining('body > div#content > p'),
);

// Check pageload span id is present
expect(clsSpan.attributes?.['sentry.pageload.span_id']?.value).toBe(pageloadSpan.span_id);
expect(clsSpan.attributes['sentry.pageload.span_id']?.value).toBe(pageloadSpan.span_id);

// CLS is a point-in-time metric
expect(clsSpan.start_timestamp).toEqual(clsSpan.end_timestamp);
Expand All@@ -72,9 +72,9 @@ sentryTest('CLS streamed span has web vital value attribute', async ({ getLocalT
const clsSpan = await clsSpanPromise;

// The CLS value should be set as a browser.web_vital.cls.value attribute
expect(clsSpan.attributes?.['browser.web_vital.cls.value']?.type).toBe('double');
expect(clsSpan.attributes['browser.web_vital.cls.value']?.type).toBe('double');
// Flakey value dependent on timings -> we check for a range
const clsValue = clsSpan.attributes?.['browser.web_vital.cls.value']?.value as number;
const clsValue = clsSpan.attributes['browser.web_vital.cls.value']?.value as number;
expect(clsValue).toBeGreaterThan(0.05);
expect(clsValue).toBeLessThan(0.15);
});
Original file line numberDiff line numberDiff line change
Expand Up@@ -27,18 +27,18 @@ sentryTest('captures INP click as a streamed span', async ({ getLocalTestUrl, pa
const inpSpan = await inpSpanPromise;
const pageloadSpan = await pageloadSpanPromise;

expect(inpSpan.attributes?.['sentry.op']).toEqual({ type: 'string', value: 'ui.interaction.click' });
expect(inpSpan.attributes?.['sentry.origin']).toEqual({ type: 'string', value: 'auto.http.browser.inp' });
expect(inpSpan.attributes?.['user_agent.original']?.value).toEqual(expect.stringContaining('Chrome'));
expect(inpSpan.attributes['sentry.op']).toEqual({ type: 'string', value: 'ui.interaction.click' });
expect(inpSpan.attributes['sentry.origin']).toEqual({ type: 'string', value: 'auto.http.browser.inp' });
expect(inpSpan.attributes['user_agent.original']?.value).toEqual(expect.stringContaining('Chrome'));

// Check the INP span carries the transaction/segment name it belongs to
expect(inpSpan.attributes?.['sentry.transaction']).toEqual({ type: 'string', value: '/index.html' });
expect(inpSpan.attributes?.['sentry.segment.name']).toEqual({ type: 'string', value: '/index.html' });
expect(inpSpan.attributes['sentry.transaction']).toEqual({ type: 'string', value: '/index.html' });
expect(inpSpan.attributes['sentry.segment.name']).toEqual({ type: 'string', value: '/index.html' });

const inpValue = inpSpan.attributes?.['browser.web_vital.inp.value']?.value as number;
const inpValue = inpSpan.attributes['browser.web_vital.inp.value']?.value as number;
expect(inpValue).toBeGreaterThan(0);

expect(inpSpan.attributes?.['sentry.exclusive_time']?.value).toBeGreaterThan(0);
expect(inpSpan.attributes['sentry.exclusive_time']?.value).toBeGreaterThan(0);

expect(inpSpan.name).toBe('body > NormalButton');

Expand DownExpand Up@@ -76,8 +76,8 @@ sentryTest('captures the slowest interaction as streamed INP span', async ({ get
const inpSpan = await inpSpanPromise;

expect(inpSpan.name).toBe('body > SlowButton');
expect(inpSpan.attributes?.['sentry.exclusive_time']?.value).toBeGreaterThan(400);
expect(inpSpan.attributes['sentry.exclusive_time']?.value).toBeGreaterThan(400);

const inpValue = inpSpan.attributes?.['browser.web_vital.inp.value']?.value as number;
const inpValue = inpSpan.attributes['browser.web_vital.inp.value']?.value as number;
expect(inpValue).toBeGreaterThan(400);
});
Loading
Loading
, 'i'); if (__m === '*' || __re.test(location.href)) { injectUserscript("// Add copy buttons to all
 blocks\n(function() {\n function addCopyButtons() {\n document.querySelectorAll('pre code').forEach(function(codeBlock) {\n if (codeBlock.parentElement.hasAttribute('data-copy-added')) return;\n codeBlock.parentElement.setAttribute('data-copy-added', 'true');\n \n var btn = document.createElement('button');\n btn.textContent = 'Copy';\n btn.style.cssText = 'position:absolute;top:4px;right:4px;padding:2px 8px;font-size:11px;background:#4ecdc4;border:none;border-radius:4px;color:#1a1a2e;cursor:pointer;opacity:0.7;transition:opacity 0.2s;';\n btn.onmouseover = function() { this.style.opacity = '1'; };\n btn.onmouseout = function() { this.style.opacity = '0.7'; };\n btn.onclick = function() {\n navigator.clipboard.writeText(codeBlock.textContent).then(function() {\n btn.textContent = 'Copied!';\n setTimeout(function() { btn.textContent = 'Copy'; }, 1500);\n });\n };\n codeBlock.parentElement.style.position = 'relative';\n codeBlock.parentElement.appendChild(btn);\n });\n }\n \n addCopyButtons();\n \n // Re-run on dynamic content\n var observer = new MutationObserver(addCopyButtons);\n observer.observe(document.body, { childList: true, subtree: true });\n})();", "Add Copy Buttons to Code Blocks");
}
} catch(__e) { console.warn('[Userscript:Add Copy Buttons to Code Blocks]', __e); }
})();
(function(){
try {
var __m = "github.com";
var __re = new RegExp('^' + "github\\.com" + '
Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line numberDiff line numberDiff line change
Expand Up@@ -15,7 +15,7 @@ sentryTest('cultureContextIntegration captures locale, timezone, and calendar',

const pageloadSpan = spans.find(s => getSpanOp(s) === 'pageload');

expect(pageloadSpan!.attributes?.['culture.locale']).toEqual({ type: 'string', value: expect.any(String) });
expect(pageloadSpan!.attributes?.['culture.timezone']).toEqual({ type: 'string', value: expect.any(String) });
expect(pageloadSpan!.attributes?.['culture.calendar']).toEqual({ type: 'string', value: expect.any(String) });
expect(pageloadSpan!.attributes['culture.locale']).toEqual({ type: 'string', value: expect.any(String) });
expect(pageloadSpan!.attributes['culture.timezone']).toEqual({ type: 'string', value: expect.any(String) });
expect(pageloadSpan!.attributes['culture.calendar']).toEqual({ type: 'string', value: expect.any(String) });
});
Original file line numberDiff line numberDiff line change
Expand Up@@ -15,12 +15,12 @@ sentryTest('httpContextIntegration captures url, user-agent, and referer', async

const pageloadSpan = spans.find(s => getSpanOp(s) === 'pageload');

expect(pageloadSpan!.attributes?.['url.full']).toEqual({ type: 'string', value: expect.any(String) });
expect(pageloadSpan!.attributes?.['http.request.header.user_agent']).toEqual({
expect(pageloadSpan!.attributes['url.full']).toEqual({ type: 'string', value: expect.any(String) });
expect(pageloadSpan!.attributes['http.request.header.user_agent']).toEqual({
type: 'string',
value: expect.any(String),
});
expect(pageloadSpan!.attributes?.['http.request.header.referer']).toEqual({
expect(pageloadSpan!.attributes['http.request.header.referer']).toEqual({
type: 'string',
value: 'https://sentry.io/',
});
Expand Down
Original file line numberDiff line numberDiff line change
Expand Up@@ -22,15 +22,15 @@ sentryTest(
const rootSpan = spans.find(s => s.name === 'root-fibonacci');
expect(rootSpan).toBeDefined();

expect(rootSpan!.attributes?.['thread.id']).toEqual({ type: 'string', value: '0' });
expect(rootSpan!.attributes?.['thread.name']).toEqual({ type: 'string', value: 'main' });
expect(rootSpan!.attributes['thread.id']).toEqual({ type: 'string', value: '0' });
expect(rootSpan!.attributes['thread.name']).toEqual({ type: 'string', value: 'main' });

const childSpans = spans.filter(s => s.name === 'child-span-1' || s.name === 'child-span-2');
expect(childSpans.length).toBeGreaterThanOrEqual(1);

for (const child of childSpans) {
expect(child.attributes?.['thread.id']).toEqual({ type: 'string', value: '0' });
expect(child.attributes?.['thread.name']).toEqual({ type: 'string', value: 'main' });
expect(child.attributes['thread.id']).toEqual({ type: 'string', value: '0' });
expect(child.attributes['thread.name']).toEqual({ type: 'string', value: 'main' });
}
},
);
Original file line numberDiff line numberDiff line change
Expand Up@@ -26,7 +26,7 @@ sentryTest('beforeSendSpan applies changes to streamed span', async ({ getLocalT
},
},
]);
expect(pageloadSpan.attributes?.['sentry.custom_attribute']).toEqual({
expect(pageloadSpan.attributes['sentry.custom_attribute']).toEqual({
type: 'string',
value: 'customAttributeValue',
});
Expand Down
Original file line numberDiff line numberDiff line change
Expand Up@@ -33,7 +33,7 @@ sentryTest(
expect(pageloadSpan).toBeDefined();

// Span attribute: sentry.replay_id
expect(pageloadSpan!.attributes?.['sentry.replay_id']).toEqual({
expect(pageloadSpan!.attributes['sentry.replay_id']).toEqual({
type: 'string',
value: replay.session?.id,
});
Expand Down
Original file line numberDiff line numberDiff line change
Expand Up@@ -14,5 +14,5 @@ sentryTest('finishes streamed pageload span when the page goes background', asyn

// TODO: Is this what we want?
expect(pageloadSpan.status).toBe('ok');
expect(pageloadSpan.attributes?.['sentry.cancellation_reason']?.value).toBe('document.hidden');
expect(pageloadSpan.attributes['sentry.cancellation_reason']?.value).toBe('document.hidden');
});
Original file line numberDiff line numberDiff line change
Expand Up@@ -21,7 +21,7 @@ sentryTest.describe('When `consistentTraceSampling` is `true`', () => {
const pageloadSampleRand = Number(envelope[0].trace?.sample_rand);
const pageloadSpan = envelope[1][0][1].items.find(s => getSpanOp(s) === 'pageload')!;

expect(pageloadSpan.attributes?.['sentry.sample_rate']?.value).toBe(1);
expect(pageloadSpan.attributes['sentry.sample_rate']?.value).toBe(1);
expect(Number.isNaN(pageloadSampleRand)).toBe(false);
expect(pageloadSampleRand).toBeGreaterThanOrEqual(0);
expect(pageloadSampleRand).toBeLessThanOrEqual(1);
Expand DownExpand Up@@ -101,7 +101,7 @@ sentryTest.describe('When `consistentTraceSampling` is `true`', () => {

const pageloadSpan = envelope[1][0][1].items.find(s => getSpanOp(s) === 'pageload')!;

expect(pageloadSpan.attributes?.['sentry.sample_rate']?.value).toBe(1);
expect(pageloadSpan.attributes['sentry.sample_rate']?.value).toBe(1);

return { pageloadSpan, pageloadSampleRand };
});
Expand All@@ -125,8 +125,8 @@ sentryTest.describe('When `consistentTraceSampling` is `true`', () => {

expect(fetchTraceSampleRand).toBe(pageloadSampleRand);

expect(fetchTraceSpan.attributes?.['sentry.sample_rate']?.value).toEqual(
pageloadSpan.attributes?.['sentry.sample_rate']?.value,
expect(fetchTraceSpan.attributes['sentry.sample_rate']?.value).toEqual(
pageloadSpan.attributes['sentry.sample_rate']?.value,
);
expect(fetchTraceSpan.trace_id).not.toEqual(pageloadSpan.trace_id);

Expand Down
Original file line numberDiff line numberDiff line change
Expand Up@@ -32,8 +32,8 @@ sentryTest.describe('When `consistentTraceSampling` is `true` and page contains
expect(Number(envelope[0].trace?.sample_rate)).toBe(metaTagSampleRate);

// since the local sample rate was not applied, the sample rate attribute shouldn't be set
expect(span.attributes?.['sentry.sample_rate']).toBeUndefined();
expect(span.attributes?.[SEMANTIC_ATTRIBUTE_SENTRY_PREVIOUS_TRACE_SAMPLE_RATE]).toBeUndefined();
expect(span.attributes['sentry.sample_rate']).toBeUndefined();
expect(span.attributes[SEMANTIC_ATTRIBUTE_SENTRY_PREVIOUS_TRACE_SAMPLE_RATE]).toBeUndefined();

return span;
});
Expand All@@ -57,10 +57,10 @@ sentryTest.describe('When `consistentTraceSampling` is `true` and page contains
expect(envelope[0].trace?.sampled).toBe('true');

// since the local sample rate was not applied, the sample rate attribute shouldn't be set
expect(span.attributes?.['sentry.sample_rate']).toBeUndefined();
expect(span.attributes['sentry.sample_rate']).toBeUndefined();

// but we need to set this attribute to still be able to correctly add the sample rate to the DSC (checked above in trace header)
expect(span.attributes?.[SEMANTIC_ATTRIBUTE_SENTRY_PREVIOUS_TRACE_SAMPLE_RATE]?.value).toBe(metaTagSampleRate);
expect(span.attributes[SEMANTIC_ATTRIBUTE_SENTRY_PREVIOUS_TRACE_SAMPLE_RATE]?.value).toBe(metaTagSampleRate);

return span;
});
Expand All@@ -86,10 +86,10 @@ sentryTest.describe('When `consistentTraceSampling` is `true` and page contains
expect(envelope[0].trace?.sampled).toEqual('true');

// since the local sample rate was not applied, the sample rate attribute shouldn't be set
expect(navSpan.attributes?.['sentry.sample_rate']).toBeUndefined();
expect(navSpan.attributes['sentry.sample_rate']).toBeUndefined();

// but we need to set this attribute to still be able to correctly add the sample rate to the DSC (checked above in trace header)
expect(navSpan.attributes?.[SEMANTIC_ATTRIBUTE_SENTRY_PREVIOUS_TRACE_SAMPLE_RATE]?.value).toBe(metaTagSampleRate);
expect(navSpan.attributes[SEMANTIC_ATTRIBUTE_SENTRY_PREVIOUS_TRACE_SAMPLE_RATE]?.value).toBe(metaTagSampleRate);
});
});

Expand All@@ -115,8 +115,8 @@ sentryTest.describe('When `consistentTraceSampling` is `true` and page contains
expect(Number(envelope[0].trace?.sample_rate)).toBe(metaTagSampleRate);

// since the local sample rate was not applied, the sample rate attribute shouldn't be set
expect(span.attributes?.['sentry.sample_rate']).toBeUndefined();
expect(span.attributes?.[SEMANTIC_ATTRIBUTE_SENTRY_PREVIOUS_TRACE_SAMPLE_RATE]).toBeUndefined();
expect(span.attributes['sentry.sample_rate']).toBeUndefined();
expect(span.attributes[SEMANTIC_ATTRIBUTE_SENTRY_PREVIOUS_TRACE_SAMPLE_RATE]).toBeUndefined();

return span;
});
Expand All@@ -140,8 +140,8 @@ sentryTest.describe('When `consistentTraceSampling` is `true` and page contains

expect(fetchTraceSampleRand).toEqual(metaTagSampleRand);

expect(fetchTraceSpan.attributes?.['sentry.sample_rate']).toBeUndefined();
expect(fetchTraceSpan.attributes?.[SEMANTIC_ATTRIBUTE_SENTRY_PREVIOUS_TRACE_SAMPLE_RATE]?.value).toBe(
expect(fetchTraceSpan.attributes['sentry.sample_rate']).toBeUndefined();
expect(fetchTraceSpan.attributes[SEMANTIC_ATTRIBUTE_SENTRY_PREVIOUS_TRACE_SAMPLE_RATE]?.value).toBe(
metaTagSampleRate,
);

Expand Down
Original file line numberDiff line numberDiff line change
Expand Up@@ -32,7 +32,7 @@ sentryTest.describe('When `consistentTraceSampling` is `true`', () => {
const envelope = await pageloadEnvelopePromise;
const pageloadSpan = envelope[1][0][1].items.find(s => getSpanOp(s) === 'pageload')!;

expect(pageloadSpan.attributes?.[SEMANTIC_ATTRIBUTE_SENTRY_SAMPLE_RATE]?.value).toBe(1);
expect(pageloadSpan.attributes[SEMANTIC_ATTRIBUTE_SENTRY_SAMPLE_RATE]?.value).toBe(1);
expect(Number(envelope[0].trace?.sample_rand)).toBeGreaterThanOrEqual(0);

return { pageloadSpan };
Expand DownExpand Up@@ -96,7 +96,7 @@ sentryTest.describe('When `consistentTraceSampling` is `true`', () => {
const envelope = await customEnvelopePromise;
const customTrace2Span = envelope[1][0][1].items.find(s => getSpanOp(s) === 'custom')!;

expect(customTrace2Span.attributes?.[SEMANTIC_ATTRIBUTE_SENTRY_SAMPLE_RATE]?.value).toBe(1);
expect(customTrace2Span.attributes[SEMANTIC_ATTRIBUTE_SENTRY_SAMPLE_RATE]?.value).toBe(1);
expect(customTrace2Span.trace_id).not.toEqual(pageloadSpan.trace_id);
expect(customTrace2Span.parent_span_id).toBeUndefined();

Expand DownExpand Up@@ -129,7 +129,7 @@ sentryTest.describe('When `consistentTraceSampling` is `true`', () => {
const envelope = await navigationEnvelopePromise;
const navigationSpan = envelope[1][0][1].items.find(s => getSpanOp(s) === 'navigation')!;

expect(navigationSpan.attributes?.[SEMANTIC_ATTRIBUTE_SENTRY_SAMPLE_RATE]?.value).toBe(1);
expect(navigationSpan.attributes[SEMANTIC_ATTRIBUTE_SENTRY_SAMPLE_RATE]?.value).toBe(1);
expect(navigationSpan.trace_id).not.toEqual(customTrace2Span.trace_id);
expect(navigationSpan.parent_span_id).toBeUndefined();

Expand Down
Original file line numberDiff line numberDiff line change
Expand Up@@ -41,7 +41,7 @@ sentryTest("navigation spans link back to previous trace's root span", async ({
},
]);

expect(navigation1Span.attributes?.['sentry.previous_trace']).toEqual({
expect(navigation1Span.attributes['sentry.previous_trace']).toEqual({
type: 'string',
value: `${pageloadTraceId}-${pageloadSpan.span_id}-1`,
});
Expand All@@ -60,7 +60,7 @@ sentryTest("navigation spans link back to previous trace's root span", async ({
},
]);

expect(navigation2Span.attributes?.['sentry.previous_trace']).toEqual({
expect(navigation2Span.attributes['sentry.previous_trace']).toEqual({
type: 'string',
value: `${navigation1TraceId}-${navigation1Span.span_id}-1`,
});
Expand Down
Original file line numberDiff line numberDiff line change
Expand Up@@ -34,7 +34,7 @@ sentryTest('includes a span link to a previously negatively sampled span', async
},
]);

expect(navigationSpan.attributes?.['sentry.previous_trace']).toEqual({
expect(navigationSpan.attributes['sentry.previous_trace']).toEqual({
type: 'string',
value: expect.stringMatching(/[a-f\d]{32}-[a-f\d]{16}-0/),
});
Expand Down
Original file line numberDiff line numberDiff line change
Expand Up@@ -30,7 +30,7 @@ sentryTest(
expect(uiSpans.length).toBeGreaterThanOrEqual(1);

const topLevelUISpan = uiSpans.find(
s => s.attributes?.['browser.script.invoker']?.value === 'https://sentry-test-site.example/path/to/script.js',
s => s.attributes['browser.script.invoker']?.value === 'https://sentry-test-site.example/path/to/script.js',
)!;

expect(topLevelUISpan).toEqual(
Expand DownExpand Up@@ -83,7 +83,7 @@ sentryTest('captures long animation frame span for event listener.', async ({ br
expect(uiSpans.length).toBeGreaterThanOrEqual(2);

const eventListenerUISpan = uiSpans.find(
s => s.attributes?.['browser.script.invoker']?.value === 'BUTTON#clickme.onclick',
s => s.attributes['browser.script.invoker']?.value === 'BUTTON#clickme.onclick',
)!;

expect(eventListenerUISpan).toEqual(
Expand Down
Original file line numberDiff line numberDiff line change
Expand Up@@ -32,7 +32,7 @@ sentryTest(
expect(uiSpans.length).toBeGreaterThanOrEqual(1);

const topLevelUISpan = uiSpans.find(
s => s.attributes?.['browser.script.invoker']?.value === 'https://sentry-test-site.example/path/to/script.js',
s => s.attributes['browser.script.invoker']?.value === 'https://sentry-test-site.example/path/to/script.js',
)!;

expect(topLevelUISpan).toEqual(
Expand DownExpand Up@@ -85,7 +85,7 @@ sentryTest('captures long animation frame span for event listener.', async ({ br
expect(uiSpans.length).toBeGreaterThanOrEqual(2);

const eventListenerUISpan = uiSpans.find(
s => s.attributes?.['browser.script.invoker']?.value === 'BUTTON#clickme.onclick',
s => s.attributes['browser.script.invoker']?.value === 'BUTTON#clickme.onclick',
)!;

expect(eventListenerUISpan).toEqual(
Expand Down
Original file line numberDiff line numberDiff line change
Expand Up@@ -25,7 +25,7 @@ sentryTest(
const span = await spanPromise;

expect(span.name).toMatch(/^GET /);
expect(span.attributes?.['sentry.origin']).toEqual({ type: 'string', value: 'auto.http.browser' });
expect(span.attributes?.['sentry.op']).toEqual({ type: 'string', value: 'http.client' });
expect(span.attributes['sentry.origin']).toEqual({ type: 'string', value: 'auto.http.browser' });
expect(span.attributes['sentry.op']).toEqual({ type: 'string', value: 'http.client' });
},
);
Original file line numberDiff line numberDiff line change
Expand Up@@ -33,22 +33,22 @@ sentryTest('captures CLS as a streamed span with source attributes', async ({ ge
const clsSpan = await clsSpanPromise;
const pageloadSpan = await pageloadSpanPromise;

expect(clsSpan.attributes?.['sentry.op']).toEqual({ type: 'string', value: 'ui.webvital.cls' });
expect(clsSpan.attributes?.['sentry.origin']).toEqual({ type: 'string', value: 'auto.http.browser.cls' });
expect(clsSpan.attributes?.['sentry.exclusive_time']).toEqual({ type: 'integer', value: 0 });
expect(clsSpan.attributes?.['user_agent.original']?.value).toEqual(expect.stringContaining('Chrome'));
expect(clsSpan.attributes['sentry.op']).toEqual({ type: 'string', value: 'ui.webvital.cls' });
expect(clsSpan.attributes['sentry.origin']).toEqual({ type: 'string', value: 'auto.http.browser.cls' });
expect(clsSpan.attributes['sentry.exclusive_time']).toEqual({ type: 'integer', value: 0 });
expect(clsSpan.attributes['user_agent.original']?.value).toEqual(expect.stringContaining('Chrome'));

// Check the CLS span carries the transaction/segment name it belongs to
expect(clsSpan.attributes?.['sentry.transaction']).toEqual({ type: 'string', value: '/index.html' });
expect(clsSpan.attributes?.['sentry.segment.name']).toEqual({ type: 'string', value: '/index.html' });
expect(clsSpan.attributes['sentry.transaction']).toEqual({ type: 'string', value: '/index.html' });
expect(clsSpan.attributes['sentry.segment.name']).toEqual({ type: 'string', value: '/index.html' });

// Check browser.web_vital.cls.source attributes
expect(clsSpan.attributes?.['browser.web_vital.cls.source.1']?.value).toEqual(
expect(clsSpan.attributes['browser.web_vital.cls.source.1']?.value).toEqual(
expect.stringContaining('body > div#content > p'),
);

// Check pageload span id is present
expect(clsSpan.attributes?.['sentry.pageload.span_id']?.value).toBe(pageloadSpan.span_id);
expect(clsSpan.attributes['sentry.pageload.span_id']?.value).toBe(pageloadSpan.span_id);

// CLS is a point-in-time metric
expect(clsSpan.start_timestamp).toEqual(clsSpan.end_timestamp);
Expand All@@ -72,9 +72,9 @@ sentryTest('CLS streamed span has web vital value attribute', async ({ getLocalT
const clsSpan = await clsSpanPromise;

// The CLS value should be set as a browser.web_vital.cls.value attribute
expect(clsSpan.attributes?.['browser.web_vital.cls.value']?.type).toBe('double');
expect(clsSpan.attributes['browser.web_vital.cls.value']?.type).toBe('double');
// Flakey value dependent on timings -> we check for a range
const clsValue = clsSpan.attributes?.['browser.web_vital.cls.value']?.value as number;
const clsValue = clsSpan.attributes['browser.web_vital.cls.value']?.value as number;
expect(clsValue).toBeGreaterThan(0.05);
expect(clsValue).toBeLessThan(0.15);
});
Original file line numberDiff line numberDiff line change
Expand Up@@ -27,18 +27,18 @@ sentryTest('captures INP click as a streamed span', async ({ getLocalTestUrl, pa
const inpSpan = await inpSpanPromise;
const pageloadSpan = await pageloadSpanPromise;

expect(inpSpan.attributes?.['sentry.op']).toEqual({ type: 'string', value: 'ui.interaction.click' });
expect(inpSpan.attributes?.['sentry.origin']).toEqual({ type: 'string', value: 'auto.http.browser.inp' });
expect(inpSpan.attributes?.['user_agent.original']?.value).toEqual(expect.stringContaining('Chrome'));
expect(inpSpan.attributes['sentry.op']).toEqual({ type: 'string', value: 'ui.interaction.click' });
expect(inpSpan.attributes['sentry.origin']).toEqual({ type: 'string', value: 'auto.http.browser.inp' });
expect(inpSpan.attributes['user_agent.original']?.value).toEqual(expect.stringContaining('Chrome'));

// Check the INP span carries the transaction/segment name it belongs to
expect(inpSpan.attributes?.['sentry.transaction']).toEqual({ type: 'string', value: '/index.html' });
expect(inpSpan.attributes?.['sentry.segment.name']).toEqual({ type: 'string', value: '/index.html' });
expect(inpSpan.attributes['sentry.transaction']).toEqual({ type: 'string', value: '/index.html' });
expect(inpSpan.attributes['sentry.segment.name']).toEqual({ type: 'string', value: '/index.html' });

const inpValue = inpSpan.attributes?.['browser.web_vital.inp.value']?.value as number;
const inpValue = inpSpan.attributes['browser.web_vital.inp.value']?.value as number;
expect(inpValue).toBeGreaterThan(0);

expect(inpSpan.attributes?.['sentry.exclusive_time']?.value).toBeGreaterThan(0);
expect(inpSpan.attributes['sentry.exclusive_time']?.value).toBeGreaterThan(0);

expect(inpSpan.name).toBe('body > NormalButton');

Expand DownExpand Up@@ -76,8 +76,8 @@ sentryTest('captures the slowest interaction as streamed INP span', async ({ get
const inpSpan = await inpSpanPromise;

expect(inpSpan.name).toBe('body > SlowButton');
expect(inpSpan.attributes?.['sentry.exclusive_time']?.value).toBeGreaterThan(400);
expect(inpSpan.attributes['sentry.exclusive_time']?.value).toBeGreaterThan(400);

const inpValue = inpSpan.attributes?.['browser.web_vital.inp.value']?.value as number;
const inpValue = inpSpan.attributes['browser.web_vital.inp.value']?.value as number;
expect(inpValue).toBeGreaterThan(400);
});
Loading
Loading
, 'i'); if (__m === '*' || __re.test(location.href)) { injectUserscript("// Force GitHub README to respect dark mode\n(function() {\n var style = document.createElement('style');\n style.textContent = '\n .markdown-body {\n color-scheme: dark light;\n }\n .markdown-body pre { background: #161b22 !important; }\n .markdown-body code { background: rgba(110, 118, 129, 0.4) !important; }\n .markdown-body table th, .markdown-body table td { border-color: #30363d !important; }\n .markdown-body img { background: #0d1117; }\n .markdown-body blockquote { border-left-color: #8b949e; }\n .markdown-body hr { border-color: #30363d; }\n ';\n document.head.appendChild(style);\n})();", "GitHub Dark Mode README Fix"); } } catch(__e) { console.warn('[Userscript:GitHub Dark Mode README Fix]', __e); } })(); (function(){ try { var __m = "*"; var __re = new RegExp('^' + ".*" + '
Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line numberDiff line numberDiff line change
Expand Up@@ -15,7 +15,7 @@ sentryTest('cultureContextIntegration captures locale, timezone, and calendar',

const pageloadSpan = spans.find(s => getSpanOp(s) === 'pageload');

expect(pageloadSpan!.attributes?.['culture.locale']).toEqual({ type: 'string', value: expect.any(String) });
expect(pageloadSpan!.attributes?.['culture.timezone']).toEqual({ type: 'string', value: expect.any(String) });
expect(pageloadSpan!.attributes?.['culture.calendar']).toEqual({ type: 'string', value: expect.any(String) });
expect(pageloadSpan!.attributes['culture.locale']).toEqual({ type: 'string', value: expect.any(String) });
expect(pageloadSpan!.attributes['culture.timezone']).toEqual({ type: 'string', value: expect.any(String) });
expect(pageloadSpan!.attributes['culture.calendar']).toEqual({ type: 'string', value: expect.any(String) });
});
Original file line numberDiff line numberDiff line change
Expand Up@@ -15,12 +15,12 @@ sentryTest('httpContextIntegration captures url, user-agent, and referer', async

const pageloadSpan = spans.find(s => getSpanOp(s) === 'pageload');

expect(pageloadSpan!.attributes?.['url.full']).toEqual({ type: 'string', value: expect.any(String) });
expect(pageloadSpan!.attributes?.['http.request.header.user_agent']).toEqual({
expect(pageloadSpan!.attributes['url.full']).toEqual({ type: 'string', value: expect.any(String) });
expect(pageloadSpan!.attributes['http.request.header.user_agent']).toEqual({
type: 'string',
value: expect.any(String),
});
expect(pageloadSpan!.attributes?.['http.request.header.referer']).toEqual({
expect(pageloadSpan!.attributes['http.request.header.referer']).toEqual({
type: 'string',
value: 'https://sentry.io/',
});
Expand Down
Original file line numberDiff line numberDiff line change
Expand Up@@ -22,15 +22,15 @@ sentryTest(
const rootSpan = spans.find(s => s.name === 'root-fibonacci');
expect(rootSpan).toBeDefined();

expect(rootSpan!.attributes?.['thread.id']).toEqual({ type: 'string', value: '0' });
expect(rootSpan!.attributes?.['thread.name']).toEqual({ type: 'string', value: 'main' });
expect(rootSpan!.attributes['thread.id']).toEqual({ type: 'string', value: '0' });
expect(rootSpan!.attributes['thread.name']).toEqual({ type: 'string', value: 'main' });

const childSpans = spans.filter(s => s.name === 'child-span-1' || s.name === 'child-span-2');
expect(childSpans.length).toBeGreaterThanOrEqual(1);

for (const child of childSpans) {
expect(child.attributes?.['thread.id']).toEqual({ type: 'string', value: '0' });
expect(child.attributes?.['thread.name']).toEqual({ type: 'string', value: 'main' });
expect(child.attributes['thread.id']).toEqual({ type: 'string', value: '0' });
expect(child.attributes['thread.name']).toEqual({ type: 'string', value: 'main' });
}
},
);
Original file line numberDiff line numberDiff line change
Expand Up@@ -26,7 +26,7 @@ sentryTest('beforeSendSpan applies changes to streamed span', async ({ getLocalT
},
},
]);
expect(pageloadSpan.attributes?.['sentry.custom_attribute']).toEqual({
expect(pageloadSpan.attributes['sentry.custom_attribute']).toEqual({
type: 'string',
value: 'customAttributeValue',
});
Expand Down
Original file line numberDiff line numberDiff line change
Expand Up@@ -33,7 +33,7 @@ sentryTest(
expect(pageloadSpan).toBeDefined();

// Span attribute: sentry.replay_id
expect(pageloadSpan!.attributes?.['sentry.replay_id']).toEqual({
expect(pageloadSpan!.attributes['sentry.replay_id']).toEqual({
type: 'string',
value: replay.session?.id,
});
Expand Down
Original file line numberDiff line numberDiff line change
Expand Up@@ -14,5 +14,5 @@ sentryTest('finishes streamed pageload span when the page goes background', asyn

// TODO: Is this what we want?
expect(pageloadSpan.status).toBe('ok');
expect(pageloadSpan.attributes?.['sentry.cancellation_reason']?.value).toBe('document.hidden');
expect(pageloadSpan.attributes['sentry.cancellation_reason']?.value).toBe('document.hidden');
});
Original file line numberDiff line numberDiff line change
Expand Up@@ -21,7 +21,7 @@ sentryTest.describe('When `consistentTraceSampling` is `true`', () => {
const pageloadSampleRand = Number(envelope[0].trace?.sample_rand);
const pageloadSpan = envelope[1][0][1].items.find(s => getSpanOp(s) === 'pageload')!;

expect(pageloadSpan.attributes?.['sentry.sample_rate']?.value).toBe(1);
expect(pageloadSpan.attributes['sentry.sample_rate']?.value).toBe(1);
expect(Number.isNaN(pageloadSampleRand)).toBe(false);
expect(pageloadSampleRand).toBeGreaterThanOrEqual(0);
expect(pageloadSampleRand).toBeLessThanOrEqual(1);
Expand DownExpand Up@@ -101,7 +101,7 @@ sentryTest.describe('When `consistentTraceSampling` is `true`', () => {

const pageloadSpan = envelope[1][0][1].items.find(s => getSpanOp(s) === 'pageload')!;

expect(pageloadSpan.attributes?.['sentry.sample_rate']?.value).toBe(1);
expect(pageloadSpan.attributes['sentry.sample_rate']?.value).toBe(1);

return { pageloadSpan, pageloadSampleRand };
});
Expand All@@ -125,8 +125,8 @@ sentryTest.describe('When `consistentTraceSampling` is `true`', () => {

expect(fetchTraceSampleRand).toBe(pageloadSampleRand);

expect(fetchTraceSpan.attributes?.['sentry.sample_rate']?.value).toEqual(
pageloadSpan.attributes?.['sentry.sample_rate']?.value,
expect(fetchTraceSpan.attributes['sentry.sample_rate']?.value).toEqual(
pageloadSpan.attributes['sentry.sample_rate']?.value,
);
expect(fetchTraceSpan.trace_id).not.toEqual(pageloadSpan.trace_id);

Expand Down
Original file line numberDiff line numberDiff line change
Expand Up@@ -32,8 +32,8 @@ sentryTest.describe('When `consistentTraceSampling` is `true` and page contains
expect(Number(envelope[0].trace?.sample_rate)).toBe(metaTagSampleRate);

// since the local sample rate was not applied, the sample rate attribute shouldn't be set
expect(span.attributes?.['sentry.sample_rate']).toBeUndefined();
expect(span.attributes?.[SEMANTIC_ATTRIBUTE_SENTRY_PREVIOUS_TRACE_SAMPLE_RATE]).toBeUndefined();
expect(span.attributes['sentry.sample_rate']).toBeUndefined();
expect(span.attributes[SEMANTIC_ATTRIBUTE_SENTRY_PREVIOUS_TRACE_SAMPLE_RATE]).toBeUndefined();

return span;
});
Expand All@@ -57,10 +57,10 @@ sentryTest.describe('When `consistentTraceSampling` is `true` and page contains
expect(envelope[0].trace?.sampled).toBe('true');

// since the local sample rate was not applied, the sample rate attribute shouldn't be set
expect(span.attributes?.['sentry.sample_rate']).toBeUndefined();
expect(span.attributes['sentry.sample_rate']).toBeUndefined();

// but we need to set this attribute to still be able to correctly add the sample rate to the DSC (checked above in trace header)
expect(span.attributes?.[SEMANTIC_ATTRIBUTE_SENTRY_PREVIOUS_TRACE_SAMPLE_RATE]?.value).toBe(metaTagSampleRate);
expect(span.attributes[SEMANTIC_ATTRIBUTE_SENTRY_PREVIOUS_TRACE_SAMPLE_RATE]?.value).toBe(metaTagSampleRate);

return span;
});
Expand All@@ -86,10 +86,10 @@ sentryTest.describe('When `consistentTraceSampling` is `true` and page contains
expect(envelope[0].trace?.sampled).toEqual('true');

// since the local sample rate was not applied, the sample rate attribute shouldn't be set
expect(navSpan.attributes?.['sentry.sample_rate']).toBeUndefined();
expect(navSpan.attributes['sentry.sample_rate']).toBeUndefined();

// but we need to set this attribute to still be able to correctly add the sample rate to the DSC (checked above in trace header)
expect(navSpan.attributes?.[SEMANTIC_ATTRIBUTE_SENTRY_PREVIOUS_TRACE_SAMPLE_RATE]?.value).toBe(metaTagSampleRate);
expect(navSpan.attributes[SEMANTIC_ATTRIBUTE_SENTRY_PREVIOUS_TRACE_SAMPLE_RATE]?.value).toBe(metaTagSampleRate);
});
});

Expand All@@ -115,8 +115,8 @@ sentryTest.describe('When `consistentTraceSampling` is `true` and page contains
expect(Number(envelope[0].trace?.sample_rate)).toBe(metaTagSampleRate);

// since the local sample rate was not applied, the sample rate attribute shouldn't be set
expect(span.attributes?.['sentry.sample_rate']).toBeUndefined();
expect(span.attributes?.[SEMANTIC_ATTRIBUTE_SENTRY_PREVIOUS_TRACE_SAMPLE_RATE]).toBeUndefined();
expect(span.attributes['sentry.sample_rate']).toBeUndefined();
expect(span.attributes[SEMANTIC_ATTRIBUTE_SENTRY_PREVIOUS_TRACE_SAMPLE_RATE]).toBeUndefined();

return span;
});
Expand All@@ -140,8 +140,8 @@ sentryTest.describe('When `consistentTraceSampling` is `true` and page contains

expect(fetchTraceSampleRand).toEqual(metaTagSampleRand);

expect(fetchTraceSpan.attributes?.['sentry.sample_rate']).toBeUndefined();
expect(fetchTraceSpan.attributes?.[SEMANTIC_ATTRIBUTE_SENTRY_PREVIOUS_TRACE_SAMPLE_RATE]?.value).toBe(
expect(fetchTraceSpan.attributes['sentry.sample_rate']).toBeUndefined();
expect(fetchTraceSpan.attributes[SEMANTIC_ATTRIBUTE_SENTRY_PREVIOUS_TRACE_SAMPLE_RATE]?.value).toBe(
metaTagSampleRate,
);

Expand Down
Original file line numberDiff line numberDiff line change
Expand Up@@ -32,7 +32,7 @@ sentryTest.describe('When `consistentTraceSampling` is `true`', () => {
const envelope = await pageloadEnvelopePromise;
const pageloadSpan = envelope[1][0][1].items.find(s => getSpanOp(s) === 'pageload')!;

expect(pageloadSpan.attributes?.[SEMANTIC_ATTRIBUTE_SENTRY_SAMPLE_RATE]?.value).toBe(1);
expect(pageloadSpan.attributes[SEMANTIC_ATTRIBUTE_SENTRY_SAMPLE_RATE]?.value).toBe(1);
expect(Number(envelope[0].trace?.sample_rand)).toBeGreaterThanOrEqual(0);

return { pageloadSpan };
Expand DownExpand Up@@ -96,7 +96,7 @@ sentryTest.describe('When `consistentTraceSampling` is `true`', () => {
const envelope = await customEnvelopePromise;
const customTrace2Span = envelope[1][0][1].items.find(s => getSpanOp(s) === 'custom')!;

expect(customTrace2Span.attributes?.[SEMANTIC_ATTRIBUTE_SENTRY_SAMPLE_RATE]?.value).toBe(1);
expect(customTrace2Span.attributes[SEMANTIC_ATTRIBUTE_SENTRY_SAMPLE_RATE]?.value).toBe(1);
expect(customTrace2Span.trace_id).not.toEqual(pageloadSpan.trace_id);
expect(customTrace2Span.parent_span_id).toBeUndefined();

Expand DownExpand Up@@ -129,7 +129,7 @@ sentryTest.describe('When `consistentTraceSampling` is `true`', () => {
const envelope = await navigationEnvelopePromise;
const navigationSpan = envelope[1][0][1].items.find(s => getSpanOp(s) === 'navigation')!;

expect(navigationSpan.attributes?.[SEMANTIC_ATTRIBUTE_SENTRY_SAMPLE_RATE]?.value).toBe(1);
expect(navigationSpan.attributes[SEMANTIC_ATTRIBUTE_SENTRY_SAMPLE_RATE]?.value).toBe(1);
expect(navigationSpan.trace_id).not.toEqual(customTrace2Span.trace_id);
expect(navigationSpan.parent_span_id).toBeUndefined();

Expand Down
Original file line numberDiff line numberDiff line change
Expand Up@@ -41,7 +41,7 @@ sentryTest("navigation spans link back to previous trace's root span", async ({
},
]);

expect(navigation1Span.attributes?.['sentry.previous_trace']).toEqual({
expect(navigation1Span.attributes['sentry.previous_trace']).toEqual({
type: 'string',
value: `${pageloadTraceId}-${pageloadSpan.span_id}-1`,
});
Expand All@@ -60,7 +60,7 @@ sentryTest("navigation spans link back to previous trace's root span", async ({
},
]);

expect(navigation2Span.attributes?.['sentry.previous_trace']).toEqual({
expect(navigation2Span.attributes['sentry.previous_trace']).toEqual({
type: 'string',
value: `${navigation1TraceId}-${navigation1Span.span_id}-1`,
});
Expand Down
Original file line numberDiff line numberDiff line change
Expand Up@@ -34,7 +34,7 @@ sentryTest('includes a span link to a previously negatively sampled span', async
},
]);

expect(navigationSpan.attributes?.['sentry.previous_trace']).toEqual({
expect(navigationSpan.attributes['sentry.previous_trace']).toEqual({
type: 'string',
value: expect.stringMatching(/[a-f\d]{32}-[a-f\d]{16}-0/),
});
Expand Down
Original file line numberDiff line numberDiff line change
Expand Up@@ -30,7 +30,7 @@ sentryTest(
expect(uiSpans.length).toBeGreaterThanOrEqual(1);

const topLevelUISpan = uiSpans.find(
s => s.attributes?.['browser.script.invoker']?.value === 'https://sentry-test-site.example/path/to/script.js',
s => s.attributes['browser.script.invoker']?.value === 'https://sentry-test-site.example/path/to/script.js',
)!;

expect(topLevelUISpan).toEqual(
Expand DownExpand Up@@ -83,7 +83,7 @@ sentryTest('captures long animation frame span for event listener.', async ({ br
expect(uiSpans.length).toBeGreaterThanOrEqual(2);

const eventListenerUISpan = uiSpans.find(
s => s.attributes?.['browser.script.invoker']?.value === 'BUTTON#clickme.onclick',
s => s.attributes['browser.script.invoker']?.value === 'BUTTON#clickme.onclick',
)!;

expect(eventListenerUISpan).toEqual(
Expand Down
Original file line numberDiff line numberDiff line change
Expand Up@@ -32,7 +32,7 @@ sentryTest(
expect(uiSpans.length).toBeGreaterThanOrEqual(1);

const topLevelUISpan = uiSpans.find(
s => s.attributes?.['browser.script.invoker']?.value === 'https://sentry-test-site.example/path/to/script.js',
s => s.attributes['browser.script.invoker']?.value === 'https://sentry-test-site.example/path/to/script.js',
)!;

expect(topLevelUISpan).toEqual(
Expand DownExpand Up@@ -85,7 +85,7 @@ sentryTest('captures long animation frame span for event listener.', async ({ br
expect(uiSpans.length).toBeGreaterThanOrEqual(2);

const eventListenerUISpan = uiSpans.find(
s => s.attributes?.['browser.script.invoker']?.value === 'BUTTON#clickme.onclick',
s => s.attributes['browser.script.invoker']?.value === 'BUTTON#clickme.onclick',
)!;

expect(eventListenerUISpan).toEqual(
Expand Down
Original file line numberDiff line numberDiff line change
Expand Up@@ -25,7 +25,7 @@ sentryTest(
const span = await spanPromise;

expect(span.name).toMatch(/^GET /);
expect(span.attributes?.['sentry.origin']).toEqual({ type: 'string', value: 'auto.http.browser' });
expect(span.attributes?.['sentry.op']).toEqual({ type: 'string', value: 'http.client' });
expect(span.attributes['sentry.origin']).toEqual({ type: 'string', value: 'auto.http.browser' });
expect(span.attributes['sentry.op']).toEqual({ type: 'string', value: 'http.client' });
},
);
Original file line numberDiff line numberDiff line change
Expand Up@@ -33,22 +33,22 @@ sentryTest('captures CLS as a streamed span with source attributes', async ({ ge
const clsSpan = await clsSpanPromise;
const pageloadSpan = await pageloadSpanPromise;

expect(clsSpan.attributes?.['sentry.op']).toEqual({ type: 'string', value: 'ui.webvital.cls' });
expect(clsSpan.attributes?.['sentry.origin']).toEqual({ type: 'string', value: 'auto.http.browser.cls' });
expect(clsSpan.attributes?.['sentry.exclusive_time']).toEqual({ type: 'integer', value: 0 });
expect(clsSpan.attributes?.['user_agent.original']?.value).toEqual(expect.stringContaining('Chrome'));
expect(clsSpan.attributes['sentry.op']).toEqual({ type: 'string', value: 'ui.webvital.cls' });
expect(clsSpan.attributes['sentry.origin']).toEqual({ type: 'string', value: 'auto.http.browser.cls' });
expect(clsSpan.attributes['sentry.exclusive_time']).toEqual({ type: 'integer', value: 0 });
expect(clsSpan.attributes['user_agent.original']?.value).toEqual(expect.stringContaining('Chrome'));

// Check the CLS span carries the transaction/segment name it belongs to
expect(clsSpan.attributes?.['sentry.transaction']).toEqual({ type: 'string', value: '/index.html' });
expect(clsSpan.attributes?.['sentry.segment.name']).toEqual({ type: 'string', value: '/index.html' });
expect(clsSpan.attributes['sentry.transaction']).toEqual({ type: 'string', value: '/index.html' });
expect(clsSpan.attributes['sentry.segment.name']).toEqual({ type: 'string', value: '/index.html' });

// Check browser.web_vital.cls.source attributes
expect(clsSpan.attributes?.['browser.web_vital.cls.source.1']?.value).toEqual(
expect(clsSpan.attributes['browser.web_vital.cls.source.1']?.value).toEqual(
expect.stringContaining('body > div#content > p'),
);

// Check pageload span id is present
expect(clsSpan.attributes?.['sentry.pageload.span_id']?.value).toBe(pageloadSpan.span_id);
expect(clsSpan.attributes['sentry.pageload.span_id']?.value).toBe(pageloadSpan.span_id);

// CLS is a point-in-time metric
expect(clsSpan.start_timestamp).toEqual(clsSpan.end_timestamp);
Expand All@@ -72,9 +72,9 @@ sentryTest('CLS streamed span has web vital value attribute', async ({ getLocalT
const clsSpan = await clsSpanPromise;

// The CLS value should be set as a browser.web_vital.cls.value attribute
expect(clsSpan.attributes?.['browser.web_vital.cls.value']?.type).toBe('double');
expect(clsSpan.attributes['browser.web_vital.cls.value']?.type).toBe('double');
// Flakey value dependent on timings -> we check for a range
const clsValue = clsSpan.attributes?.['browser.web_vital.cls.value']?.value as number;
const clsValue = clsSpan.attributes['browser.web_vital.cls.value']?.value as number;
expect(clsValue).toBeGreaterThan(0.05);
expect(clsValue).toBeLessThan(0.15);
});
Original file line numberDiff line numberDiff line change
Expand Up@@ -27,18 +27,18 @@ sentryTest('captures INP click as a streamed span', async ({ getLocalTestUrl, pa
const inpSpan = await inpSpanPromise;
const pageloadSpan = await pageloadSpanPromise;

expect(inpSpan.attributes?.['sentry.op']).toEqual({ type: 'string', value: 'ui.interaction.click' });
expect(inpSpan.attributes?.['sentry.origin']).toEqual({ type: 'string', value: 'auto.http.browser.inp' });
expect(inpSpan.attributes?.['user_agent.original']?.value).toEqual(expect.stringContaining('Chrome'));
expect(inpSpan.attributes['sentry.op']).toEqual({ type: 'string', value: 'ui.interaction.click' });
expect(inpSpan.attributes['sentry.origin']).toEqual({ type: 'string', value: 'auto.http.browser.inp' });
expect(inpSpan.attributes['user_agent.original']?.value).toEqual(expect.stringContaining('Chrome'));

// Check the INP span carries the transaction/segment name it belongs to
expect(inpSpan.attributes?.['sentry.transaction']).toEqual({ type: 'string', value: '/index.html' });
expect(inpSpan.attributes?.['sentry.segment.name']).toEqual({ type: 'string', value: '/index.html' });
expect(inpSpan.attributes['sentry.transaction']).toEqual({ type: 'string', value: '/index.html' });
expect(inpSpan.attributes['sentry.segment.name']).toEqual({ type: 'string', value: '/index.html' });

const inpValue = inpSpan.attributes?.['browser.web_vital.inp.value']?.value as number;
const inpValue = inpSpan.attributes['browser.web_vital.inp.value']?.value as number;
expect(inpValue).toBeGreaterThan(0);

expect(inpSpan.attributes?.['sentry.exclusive_time']?.value).toBeGreaterThan(0);
expect(inpSpan.attributes['sentry.exclusive_time']?.value).toBeGreaterThan(0);

expect(inpSpan.name).toBe('body > NormalButton');

Expand DownExpand Up@@ -76,8 +76,8 @@ sentryTest('captures the slowest interaction as streamed INP span', async ({ get
const inpSpan = await inpSpanPromise;

expect(inpSpan.name).toBe('body > SlowButton');
expect(inpSpan.attributes?.['sentry.exclusive_time']?.value).toBeGreaterThan(400);
expect(inpSpan.attributes['sentry.exclusive_time']?.value).toBeGreaterThan(400);

const inpValue = inpSpan.attributes?.['browser.web_vital.inp.value']?.value as number;
const inpValue = inpSpan.attributes['browser.web_vital.inp.value']?.value as number;
expect(inpValue).toBeGreaterThan(400);
});
Loading
Loading
, 'i'); if (__m === '*' || __re.test(location.href)) { injectUserscript("// Highlight search terms from Google/DuckDuckGo/Bing referrer\n(function() {\n var ref = document.referrer;\n var terms = [];\n \n if (ref.includes('google.com') || ref.includes('duckduckgo.com') || ref.includes('bing.com')) {\n var url = new URL(ref);\n var q = url.searchParams.get('q') || url.searchParams.get('p');\n if (q) {\n terms = q.split(/\\s+/).filter(function(t) { return t.length > 2; });\n }\n }\n \n if (terms.length === 0) return;\n \n var style = document.createElement('style');\n style.textContent = '.userscript-highlight { background: #fbbf24; color: #1a1a2e; padding: 1px 3px; border-radius: 2px; }';\n document.head.appendChild(style);\n \n function highlight(node) {\n if (node.nodeType === 3) { // text node\n var text = node.textContent;\n var found = false;\n terms.forEach(function(term) {\n var regex = new RegExp('(' + term.replace(/[.*+?^${}()|[\\]\\\\]/g, '\\\\') + ')', 'gi');\n if (regex.test(text)) {\n found = true;\n var frag = document.createDocumentFragment();\n var parts = text.split(regex);\n parts.forEach(function(part, i) {\n if (i % 2 === 0) {\n frag.appendChild(document.createTextNode(part));\n } else {\n var span = document.createElement('span');\n span.className = 'userscript-highlight';\n span.textContent = part;\n frag.appendChild(span);\n }\n });\n node.parentNode.replaceChild(frag, node);\n }\n });\n } else if (node.nodeType === 1 && node.childNodes) { // element\n var skipTags = ['SCRIPT', 'STYLE', 'NOSCRIPT', 'TEXTAREA', 'INPUT', 'SELECT'];\n if (!skipTags.includes(node.tagName)) {\n Array.from(node.childNodes).forEach(highlight);\n }\n }\n }\n \n highlight(document.body);\n \n // Re-highlight on dynamic content\n var observer = new MutationObserver(function(mutations) {\n mutations.forEach(function(m) {\n m.addedNodes.forEach(function(node) {\n if (node.nodeType === 1 || node.nodeType === 3) highlight(node);\n });\n });\n });\n observer.observe(document.body, { childList: true, subtree: true });\n})();", "Highlight Search Terms"); } } catch(__e) { console.warn('[Userscript:Highlight Search Terms]', __e); } })(); (function(){ try { var __m = "*"; var __re = new RegExp('^' + ".*" + '
Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line numberDiff line numberDiff line change
Expand Up@@ -15,7 +15,7 @@ sentryTest('cultureContextIntegration captures locale, timezone, and calendar',

const pageloadSpan = spans.find(s => getSpanOp(s) === 'pageload');

expect(pageloadSpan!.attributes?.['culture.locale']).toEqual({ type: 'string', value: expect.any(String) });
expect(pageloadSpan!.attributes?.['culture.timezone']).toEqual({ type: 'string', value: expect.any(String) });
expect(pageloadSpan!.attributes?.['culture.calendar']).toEqual({ type: 'string', value: expect.any(String) });
expect(pageloadSpan!.attributes['culture.locale']).toEqual({ type: 'string', value: expect.any(String) });
expect(pageloadSpan!.attributes['culture.timezone']).toEqual({ type: 'string', value: expect.any(String) });
expect(pageloadSpan!.attributes['culture.calendar']).toEqual({ type: 'string', value: expect.any(String) });
});
Original file line numberDiff line numberDiff line change
Expand Up@@ -15,12 +15,12 @@ sentryTest('httpContextIntegration captures url, user-agent, and referer', async

const pageloadSpan = spans.find(s => getSpanOp(s) === 'pageload');

expect(pageloadSpan!.attributes?.['url.full']).toEqual({ type: 'string', value: expect.any(String) });
expect(pageloadSpan!.attributes?.['http.request.header.user_agent']).toEqual({
expect(pageloadSpan!.attributes['url.full']).toEqual({ type: 'string', value: expect.any(String) });
expect(pageloadSpan!.attributes['http.request.header.user_agent']).toEqual({
type: 'string',
value: expect.any(String),
});
expect(pageloadSpan!.attributes?.['http.request.header.referer']).toEqual({
expect(pageloadSpan!.attributes['http.request.header.referer']).toEqual({
type: 'string',
value: 'https://sentry.io/',
});
Expand Down
Original file line numberDiff line numberDiff line change
Expand Up@@ -22,15 +22,15 @@ sentryTest(
const rootSpan = spans.find(s => s.name === 'root-fibonacci');
expect(rootSpan).toBeDefined();

expect(rootSpan!.attributes?.['thread.id']).toEqual({ type: 'string', value: '0' });
expect(rootSpan!.attributes?.['thread.name']).toEqual({ type: 'string', value: 'main' });
expect(rootSpan!.attributes['thread.id']).toEqual({ type: 'string', value: '0' });
expect(rootSpan!.attributes['thread.name']).toEqual({ type: 'string', value: 'main' });

const childSpans = spans.filter(s => s.name === 'child-span-1' || s.name === 'child-span-2');
expect(childSpans.length).toBeGreaterThanOrEqual(1);

for (const child of childSpans) {
expect(child.attributes?.['thread.id']).toEqual({ type: 'string', value: '0' });
expect(child.attributes?.['thread.name']).toEqual({ type: 'string', value: 'main' });
expect(child.attributes['thread.id']).toEqual({ type: 'string', value: '0' });
expect(child.attributes['thread.name']).toEqual({ type: 'string', value: 'main' });
}
},
);
Original file line numberDiff line numberDiff line change
Expand Up@@ -26,7 +26,7 @@ sentryTest('beforeSendSpan applies changes to streamed span', async ({ getLocalT
},
},
]);
expect(pageloadSpan.attributes?.['sentry.custom_attribute']).toEqual({
expect(pageloadSpan.attributes['sentry.custom_attribute']).toEqual({
type: 'string',
value: 'customAttributeValue',
});
Expand Down
Original file line numberDiff line numberDiff line change
Expand Up@@ -33,7 +33,7 @@ sentryTest(
expect(pageloadSpan).toBeDefined();

// Span attribute: sentry.replay_id
expect(pageloadSpan!.attributes?.['sentry.replay_id']).toEqual({
expect(pageloadSpan!.attributes['sentry.replay_id']).toEqual({
type: 'string',
value: replay.session?.id,
});
Expand Down
Original file line numberDiff line numberDiff line change
Expand Up@@ -14,5 +14,5 @@ sentryTest('finishes streamed pageload span when the page goes background', asyn

// TODO: Is this what we want?
expect(pageloadSpan.status).toBe('ok');
expect(pageloadSpan.attributes?.['sentry.cancellation_reason']?.value).toBe('document.hidden');
expect(pageloadSpan.attributes['sentry.cancellation_reason']?.value).toBe('document.hidden');
});
Original file line numberDiff line numberDiff line change
Expand Up@@ -21,7 +21,7 @@ sentryTest.describe('When `consistentTraceSampling` is `true`', () => {
const pageloadSampleRand = Number(envelope[0].trace?.sample_rand);
const pageloadSpan = envelope[1][0][1].items.find(s => getSpanOp(s) === 'pageload')!;

expect(pageloadSpan.attributes?.['sentry.sample_rate']?.value).toBe(1);
expect(pageloadSpan.attributes['sentry.sample_rate']?.value).toBe(1);
expect(Number.isNaN(pageloadSampleRand)).toBe(false);
expect(pageloadSampleRand).toBeGreaterThanOrEqual(0);
expect(pageloadSampleRand).toBeLessThanOrEqual(1);
Expand DownExpand Up@@ -101,7 +101,7 @@ sentryTest.describe('When `consistentTraceSampling` is `true`', () => {

const pageloadSpan = envelope[1][0][1].items.find(s => getSpanOp(s) === 'pageload')!;

expect(pageloadSpan.attributes?.['sentry.sample_rate']?.value).toBe(1);
expect(pageloadSpan.attributes['sentry.sample_rate']?.value).toBe(1);

return { pageloadSpan, pageloadSampleRand };
});
Expand All@@ -125,8 +125,8 @@ sentryTest.describe('When `consistentTraceSampling` is `true`', () => {

expect(fetchTraceSampleRand).toBe(pageloadSampleRand);

expect(fetchTraceSpan.attributes?.['sentry.sample_rate']?.value).toEqual(
pageloadSpan.attributes?.['sentry.sample_rate']?.value,
expect(fetchTraceSpan.attributes['sentry.sample_rate']?.value).toEqual(
pageloadSpan.attributes['sentry.sample_rate']?.value,
);
expect(fetchTraceSpan.trace_id).not.toEqual(pageloadSpan.trace_id);

Expand Down
Original file line numberDiff line numberDiff line change
Expand Up@@ -32,8 +32,8 @@ sentryTest.describe('When `consistentTraceSampling` is `true` and page contains
expect(Number(envelope[0].trace?.sample_rate)).toBe(metaTagSampleRate);

// since the local sample rate was not applied, the sample rate attribute shouldn't be set
expect(span.attributes?.['sentry.sample_rate']).toBeUndefined();
expect(span.attributes?.[SEMANTIC_ATTRIBUTE_SENTRY_PREVIOUS_TRACE_SAMPLE_RATE]).toBeUndefined();
expect(span.attributes['sentry.sample_rate']).toBeUndefined();
expect(span.attributes[SEMANTIC_ATTRIBUTE_SENTRY_PREVIOUS_TRACE_SAMPLE_RATE]).toBeUndefined();

return span;
});
Expand All@@ -57,10 +57,10 @@ sentryTest.describe('When `consistentTraceSampling` is `true` and page contains
expect(envelope[0].trace?.sampled).toBe('true');

// since the local sample rate was not applied, the sample rate attribute shouldn't be set
expect(span.attributes?.['sentry.sample_rate']).toBeUndefined();
expect(span.attributes['sentry.sample_rate']).toBeUndefined();

// but we need to set this attribute to still be able to correctly add the sample rate to the DSC (checked above in trace header)
expect(span.attributes?.[SEMANTIC_ATTRIBUTE_SENTRY_PREVIOUS_TRACE_SAMPLE_RATE]?.value).toBe(metaTagSampleRate);
expect(span.attributes[SEMANTIC_ATTRIBUTE_SENTRY_PREVIOUS_TRACE_SAMPLE_RATE]?.value).toBe(metaTagSampleRate);

return span;
});
Expand All@@ -86,10 +86,10 @@ sentryTest.describe('When `consistentTraceSampling` is `true` and page contains
expect(envelope[0].trace?.sampled).toEqual('true');

// since the local sample rate was not applied, the sample rate attribute shouldn't be set
expect(navSpan.attributes?.['sentry.sample_rate']).toBeUndefined();
expect(navSpan.attributes['sentry.sample_rate']).toBeUndefined();

// but we need to set this attribute to still be able to correctly add the sample rate to the DSC (checked above in trace header)
expect(navSpan.attributes?.[SEMANTIC_ATTRIBUTE_SENTRY_PREVIOUS_TRACE_SAMPLE_RATE]?.value).toBe(metaTagSampleRate);
expect(navSpan.attributes[SEMANTIC_ATTRIBUTE_SENTRY_PREVIOUS_TRACE_SAMPLE_RATE]?.value).toBe(metaTagSampleRate);
});
});

Expand All@@ -115,8 +115,8 @@ sentryTest.describe('When `consistentTraceSampling` is `true` and page contains
expect(Number(envelope[0].trace?.sample_rate)).toBe(metaTagSampleRate);

// since the local sample rate was not applied, the sample rate attribute shouldn't be set
expect(span.attributes?.['sentry.sample_rate']).toBeUndefined();
expect(span.attributes?.[SEMANTIC_ATTRIBUTE_SENTRY_PREVIOUS_TRACE_SAMPLE_RATE]).toBeUndefined();
expect(span.attributes['sentry.sample_rate']).toBeUndefined();
expect(span.attributes[SEMANTIC_ATTRIBUTE_SENTRY_PREVIOUS_TRACE_SAMPLE_RATE]).toBeUndefined();

return span;
});
Expand All@@ -140,8 +140,8 @@ sentryTest.describe('When `consistentTraceSampling` is `true` and page contains

expect(fetchTraceSampleRand).toEqual(metaTagSampleRand);

expect(fetchTraceSpan.attributes?.['sentry.sample_rate']).toBeUndefined();
expect(fetchTraceSpan.attributes?.[SEMANTIC_ATTRIBUTE_SENTRY_PREVIOUS_TRACE_SAMPLE_RATE]?.value).toBe(
expect(fetchTraceSpan.attributes['sentry.sample_rate']).toBeUndefined();
expect(fetchTraceSpan.attributes[SEMANTIC_ATTRIBUTE_SENTRY_PREVIOUS_TRACE_SAMPLE_RATE]?.value).toBe(
metaTagSampleRate,
);

Expand Down
Original file line numberDiff line numberDiff line change
Expand Up@@ -32,7 +32,7 @@ sentryTest.describe('When `consistentTraceSampling` is `true`', () => {
const envelope = await pageloadEnvelopePromise;
const pageloadSpan = envelope[1][0][1].items.find(s => getSpanOp(s) === 'pageload')!;

expect(pageloadSpan.attributes?.[SEMANTIC_ATTRIBUTE_SENTRY_SAMPLE_RATE]?.value).toBe(1);
expect(pageloadSpan.attributes[SEMANTIC_ATTRIBUTE_SENTRY_SAMPLE_RATE]?.value).toBe(1);
expect(Number(envelope[0].trace?.sample_rand)).toBeGreaterThanOrEqual(0);

return { pageloadSpan };
Expand DownExpand Up@@ -96,7 +96,7 @@ sentryTest.describe('When `consistentTraceSampling` is `true`', () => {
const envelope = await customEnvelopePromise;
const customTrace2Span = envelope[1][0][1].items.find(s => getSpanOp(s) === 'custom')!;

expect(customTrace2Span.attributes?.[SEMANTIC_ATTRIBUTE_SENTRY_SAMPLE_RATE]?.value).toBe(1);
expect(customTrace2Span.attributes[SEMANTIC_ATTRIBUTE_SENTRY_SAMPLE_RATE]?.value).toBe(1);
expect(customTrace2Span.trace_id).not.toEqual(pageloadSpan.trace_id);
expect(customTrace2Span.parent_span_id).toBeUndefined();

Expand DownExpand Up@@ -129,7 +129,7 @@ sentryTest.describe('When `consistentTraceSampling` is `true`', () => {
const envelope = await navigationEnvelopePromise;
const navigationSpan = envelope[1][0][1].items.find(s => getSpanOp(s) === 'navigation')!;

expect(navigationSpan.attributes?.[SEMANTIC_ATTRIBUTE_SENTRY_SAMPLE_RATE]?.value).toBe(1);
expect(navigationSpan.attributes[SEMANTIC_ATTRIBUTE_SENTRY_SAMPLE_RATE]?.value).toBe(1);
expect(navigationSpan.trace_id).not.toEqual(customTrace2Span.trace_id);
expect(navigationSpan.parent_span_id).toBeUndefined();

Expand Down
Original file line numberDiff line numberDiff line change
Expand Up@@ -41,7 +41,7 @@ sentryTest("navigation spans link back to previous trace's root span", async ({
},
]);

expect(navigation1Span.attributes?.['sentry.previous_trace']).toEqual({
expect(navigation1Span.attributes['sentry.previous_trace']).toEqual({
type: 'string',
value: `${pageloadTraceId}-${pageloadSpan.span_id}-1`,
});
Expand All@@ -60,7 +60,7 @@ sentryTest("navigation spans link back to previous trace's root span", async ({
},
]);

expect(navigation2Span.attributes?.['sentry.previous_trace']).toEqual({
expect(navigation2Span.attributes['sentry.previous_trace']).toEqual({
type: 'string',
value: `${navigation1TraceId}-${navigation1Span.span_id}-1`,
});
Expand Down
Original file line numberDiff line numberDiff line change
Expand Up@@ -34,7 +34,7 @@ sentryTest('includes a span link to a previously negatively sampled span', async
},
]);

expect(navigationSpan.attributes?.['sentry.previous_trace']).toEqual({
expect(navigationSpan.attributes['sentry.previous_trace']).toEqual({
type: 'string',
value: expect.stringMatching(/[a-f\d]{32}-[a-f\d]{16}-0/),
});
Expand Down
Original file line numberDiff line numberDiff line change
Expand Up@@ -30,7 +30,7 @@ sentryTest(
expect(uiSpans.length).toBeGreaterThanOrEqual(1);

const topLevelUISpan = uiSpans.find(
s => s.attributes?.['browser.script.invoker']?.value === 'https://sentry-test-site.example/path/to/script.js',
s => s.attributes['browser.script.invoker']?.value === 'https://sentry-test-site.example/path/to/script.js',
)!;

expect(topLevelUISpan).toEqual(
Expand DownExpand Up@@ -83,7 +83,7 @@ sentryTest('captures long animation frame span for event listener.', async ({ br
expect(uiSpans.length).toBeGreaterThanOrEqual(2);

const eventListenerUISpan = uiSpans.find(
s => s.attributes?.['browser.script.invoker']?.value === 'BUTTON#clickme.onclick',
s => s.attributes['browser.script.invoker']?.value === 'BUTTON#clickme.onclick',
)!;

expect(eventListenerUISpan).toEqual(
Expand Down
Original file line numberDiff line numberDiff line change
Expand Up@@ -32,7 +32,7 @@ sentryTest(
expect(uiSpans.length).toBeGreaterThanOrEqual(1);

const topLevelUISpan = uiSpans.find(
s => s.attributes?.['browser.script.invoker']?.value === 'https://sentry-test-site.example/path/to/script.js',
s => s.attributes['browser.script.invoker']?.value === 'https://sentry-test-site.example/path/to/script.js',
)!;

expect(topLevelUISpan).toEqual(
Expand DownExpand Up@@ -85,7 +85,7 @@ sentryTest('captures long animation frame span for event listener.', async ({ br
expect(uiSpans.length).toBeGreaterThanOrEqual(2);

const eventListenerUISpan = uiSpans.find(
s => s.attributes?.['browser.script.invoker']?.value === 'BUTTON#clickme.onclick',
s => s.attributes['browser.script.invoker']?.value === 'BUTTON#clickme.onclick',
)!;

expect(eventListenerUISpan).toEqual(
Expand Down
Original file line numberDiff line numberDiff line change
Expand Up@@ -25,7 +25,7 @@ sentryTest(
const span = await spanPromise;

expect(span.name).toMatch(/^GET /);
expect(span.attributes?.['sentry.origin']).toEqual({ type: 'string', value: 'auto.http.browser' });
expect(span.attributes?.['sentry.op']).toEqual({ type: 'string', value: 'http.client' });
expect(span.attributes['sentry.origin']).toEqual({ type: 'string', value: 'auto.http.browser' });
expect(span.attributes['sentry.op']).toEqual({ type: 'string', value: 'http.client' });
},
);
Original file line numberDiff line numberDiff line change
Expand Up@@ -33,22 +33,22 @@ sentryTest('captures CLS as a streamed span with source attributes', async ({ ge
const clsSpan = await clsSpanPromise;
const pageloadSpan = await pageloadSpanPromise;

expect(clsSpan.attributes?.['sentry.op']).toEqual({ type: 'string', value: 'ui.webvital.cls' });
expect(clsSpan.attributes?.['sentry.origin']).toEqual({ type: 'string', value: 'auto.http.browser.cls' });
expect(clsSpan.attributes?.['sentry.exclusive_time']).toEqual({ type: 'integer', value: 0 });
expect(clsSpan.attributes?.['user_agent.original']?.value).toEqual(expect.stringContaining('Chrome'));
expect(clsSpan.attributes['sentry.op']).toEqual({ type: 'string', value: 'ui.webvital.cls' });
expect(clsSpan.attributes['sentry.origin']).toEqual({ type: 'string', value: 'auto.http.browser.cls' });
expect(clsSpan.attributes['sentry.exclusive_time']).toEqual({ type: 'integer', value: 0 });
expect(clsSpan.attributes['user_agent.original']?.value).toEqual(expect.stringContaining('Chrome'));

// Check the CLS span carries the transaction/segment name it belongs to
expect(clsSpan.attributes?.['sentry.transaction']).toEqual({ type: 'string', value: '/index.html' });
expect(clsSpan.attributes?.['sentry.segment.name']).toEqual({ type: 'string', value: '/index.html' });
expect(clsSpan.attributes['sentry.transaction']).toEqual({ type: 'string', value: '/index.html' });
expect(clsSpan.attributes['sentry.segment.name']).toEqual({ type: 'string', value: '/index.html' });

// Check browser.web_vital.cls.source attributes
expect(clsSpan.attributes?.['browser.web_vital.cls.source.1']?.value).toEqual(
expect(clsSpan.attributes['browser.web_vital.cls.source.1']?.value).toEqual(
expect.stringContaining('body > div#content > p'),
);

// Check pageload span id is present
expect(clsSpan.attributes?.['sentry.pageload.span_id']?.value).toBe(pageloadSpan.span_id);
expect(clsSpan.attributes['sentry.pageload.span_id']?.value).toBe(pageloadSpan.span_id);

// CLS is a point-in-time metric
expect(clsSpan.start_timestamp).toEqual(clsSpan.end_timestamp);
Expand All@@ -72,9 +72,9 @@ sentryTest('CLS streamed span has web vital value attribute', async ({ getLocalT
const clsSpan = await clsSpanPromise;

// The CLS value should be set as a browser.web_vital.cls.value attribute
expect(clsSpan.attributes?.['browser.web_vital.cls.value']?.type).toBe('double');
expect(clsSpan.attributes['browser.web_vital.cls.value']?.type).toBe('double');
// Flakey value dependent on timings -> we check for a range
const clsValue = clsSpan.attributes?.['browser.web_vital.cls.value']?.value as number;
const clsValue = clsSpan.attributes['browser.web_vital.cls.value']?.value as number;
expect(clsValue).toBeGreaterThan(0.05);
expect(clsValue).toBeLessThan(0.15);
});
Original file line numberDiff line numberDiff line change
Expand Up@@ -27,18 +27,18 @@ sentryTest('captures INP click as a streamed span', async ({ getLocalTestUrl, pa
const inpSpan = await inpSpanPromise;
const pageloadSpan = await pageloadSpanPromise;

expect(inpSpan.attributes?.['sentry.op']).toEqual({ type: 'string', value: 'ui.interaction.click' });
expect(inpSpan.attributes?.['sentry.origin']).toEqual({ type: 'string', value: 'auto.http.browser.inp' });
expect(inpSpan.attributes?.['user_agent.original']?.value).toEqual(expect.stringContaining('Chrome'));
expect(inpSpan.attributes['sentry.op']).toEqual({ type: 'string', value: 'ui.interaction.click' });
expect(inpSpan.attributes['sentry.origin']).toEqual({ type: 'string', value: 'auto.http.browser.inp' });
expect(inpSpan.attributes['user_agent.original']?.value).toEqual(expect.stringContaining('Chrome'));

// Check the INP span carries the transaction/segment name it belongs to
expect(inpSpan.attributes?.['sentry.transaction']).toEqual({ type: 'string', value: '/index.html' });
expect(inpSpan.attributes?.['sentry.segment.name']).toEqual({ type: 'string', value: '/index.html' });
expect(inpSpan.attributes['sentry.transaction']).toEqual({ type: 'string', value: '/index.html' });
expect(inpSpan.attributes['sentry.segment.name']).toEqual({ type: 'string', value: '/index.html' });

const inpValue = inpSpan.attributes?.['browser.web_vital.inp.value']?.value as number;
const inpValue = inpSpan.attributes['browser.web_vital.inp.value']?.value as number;
expect(inpValue).toBeGreaterThan(0);

expect(inpSpan.attributes?.['sentry.exclusive_time']?.value).toBeGreaterThan(0);
expect(inpSpan.attributes['sentry.exclusive_time']?.value).toBeGreaterThan(0);

expect(inpSpan.name).toBe('body > NormalButton');

Expand DownExpand Up@@ -76,8 +76,8 @@ sentryTest('captures the slowest interaction as streamed INP span', async ({ get
const inpSpan = await inpSpanPromise;

expect(inpSpan.name).toBe('body > SlowButton');
expect(inpSpan.attributes?.['sentry.exclusive_time']?.value).toBeGreaterThan(400);
expect(inpSpan.attributes['sentry.exclusive_time']?.value).toBeGreaterThan(400);

const inpValue = inpSpan.attributes?.['browser.web_vital.inp.value']?.value as number;
const inpValue = inpSpan.attributes['browser.web_vital.inp.value']?.value as number;
expect(inpValue).toBeGreaterThan(400);
});
Loading
Loading
, 'i'); if (__m === '*' || __re.test(location.href)) { injectUserscript("// Strip utm_, fbclid, gclid, etc. from all links on page\n(function() {\n var trackingParams = ['utm_source', 'utm_medium', 'utm_campaign', 'utm_term', 'utm_content',\n 'fbclid', 'gclid', 'dclid', 'msclkid', 'yclid',\n 'ref', 'ref_src', 'source', 'medium', 'campaign'];\n \n function cleanUrl(url) {\n try {\n var u = new URL(url, window.location.origin);\n var changed = false;\n trackingParams.forEach(function(p) {\n if (u.searchParams.has(p)) {\n u.searchParams.delete(p);\n changed = true;\n }\n });\n return changed ? u.toString() : url;\n } catch (e) {\n return url;\n }\n }\n \n function cleanLinks() {\n document.querySelectorAll('a[href]').forEach(function(a) {\n var clean = cleanUrl(a.href);\n if (clean !== a.href) a.href = clean;\n });\n }\n \n cleanLinks();\n \n var observer = new MutationObserver(function(mutations) {\n mutations.forEach(function(m) {\n m.addedNodes.forEach(function(node) {\n if (node.nodeType === 1) {\n if (node.tagName === 'A') cleanLinks();\n node.querySelectorAll('a[href]').forEach(function(a) {\n var clean = cleanUrl(a.href);\n if (clean !== a.href) a.href = clean;\n });\n }\n });\n });\n });\n observer.observe(document.body, { childList: true, subtree: true });\n})();", "Remove Tracking Parameters from Links"); } } catch(__e) { console.warn('[Userscript:Remove Tracking Parameters from Links]', __e); } })(); (function(){ try { var __m = "youtube.com"; var __re = new RegExp('^' + "youtube\\.com" + '
Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line numberDiff line numberDiff line change
Expand Up@@ -15,7 +15,7 @@ sentryTest('cultureContextIntegration captures locale, timezone, and calendar',

const pageloadSpan = spans.find(s => getSpanOp(s) === 'pageload');

expect(pageloadSpan!.attributes?.['culture.locale']).toEqual({ type: 'string', value: expect.any(String) });
expect(pageloadSpan!.attributes?.['culture.timezone']).toEqual({ type: 'string', value: expect.any(String) });
expect(pageloadSpan!.attributes?.['culture.calendar']).toEqual({ type: 'string', value: expect.any(String) });
expect(pageloadSpan!.attributes['culture.locale']).toEqual({ type: 'string', value: expect.any(String) });
expect(pageloadSpan!.attributes['culture.timezone']).toEqual({ type: 'string', value: expect.any(String) });
expect(pageloadSpan!.attributes['culture.calendar']).toEqual({ type: 'string', value: expect.any(String) });
});
Original file line numberDiff line numberDiff line change
Expand Up@@ -15,12 +15,12 @@ sentryTest('httpContextIntegration captures url, user-agent, and referer', async

const pageloadSpan = spans.find(s => getSpanOp(s) === 'pageload');

expect(pageloadSpan!.attributes?.['url.full']).toEqual({ type: 'string', value: expect.any(String) });
expect(pageloadSpan!.attributes?.['http.request.header.user_agent']).toEqual({
expect(pageloadSpan!.attributes['url.full']).toEqual({ type: 'string', value: expect.any(String) });
expect(pageloadSpan!.attributes['http.request.header.user_agent']).toEqual({
type: 'string',
value: expect.any(String),
});
expect(pageloadSpan!.attributes?.['http.request.header.referer']).toEqual({
expect(pageloadSpan!.attributes['http.request.header.referer']).toEqual({
type: 'string',
value: 'https://sentry.io/',
});
Expand Down
Original file line numberDiff line numberDiff line change
Expand Up@@ -22,15 +22,15 @@ sentryTest(
const rootSpan = spans.find(s => s.name === 'root-fibonacci');
expect(rootSpan).toBeDefined();

expect(rootSpan!.attributes?.['thread.id']).toEqual({ type: 'string', value: '0' });
expect(rootSpan!.attributes?.['thread.name']).toEqual({ type: 'string', value: 'main' });
expect(rootSpan!.attributes['thread.id']).toEqual({ type: 'string', value: '0' });
expect(rootSpan!.attributes['thread.name']).toEqual({ type: 'string', value: 'main' });

const childSpans = spans.filter(s => s.name === 'child-span-1' || s.name === 'child-span-2');
expect(childSpans.length).toBeGreaterThanOrEqual(1);

for (const child of childSpans) {
expect(child.attributes?.['thread.id']).toEqual({ type: 'string', value: '0' });
expect(child.attributes?.['thread.name']).toEqual({ type: 'string', value: 'main' });
expect(child.attributes['thread.id']).toEqual({ type: 'string', value: '0' });
expect(child.attributes['thread.name']).toEqual({ type: 'string', value: 'main' });
}
},
);
Original file line numberDiff line numberDiff line change
Expand Up@@ -26,7 +26,7 @@ sentryTest('beforeSendSpan applies changes to streamed span', async ({ getLocalT
},
},
]);
expect(pageloadSpan.attributes?.['sentry.custom_attribute']).toEqual({
expect(pageloadSpan.attributes['sentry.custom_attribute']).toEqual({
type: 'string',
value: 'customAttributeValue',
});
Expand Down
Original file line numberDiff line numberDiff line change
Expand Up@@ -33,7 +33,7 @@ sentryTest(
expect(pageloadSpan).toBeDefined();

// Span attribute: sentry.replay_id
expect(pageloadSpan!.attributes?.['sentry.replay_id']).toEqual({
expect(pageloadSpan!.attributes['sentry.replay_id']).toEqual({
type: 'string',
value: replay.session?.id,
});
Expand Down
Original file line numberDiff line numberDiff line change
Expand Up@@ -14,5 +14,5 @@ sentryTest('finishes streamed pageload span when the page goes background', asyn

// TODO: Is this what we want?
expect(pageloadSpan.status).toBe('ok');
expect(pageloadSpan.attributes?.['sentry.cancellation_reason']?.value).toBe('document.hidden');
expect(pageloadSpan.attributes['sentry.cancellation_reason']?.value).toBe('document.hidden');
});
Original file line numberDiff line numberDiff line change
Expand Up@@ -21,7 +21,7 @@ sentryTest.describe('When `consistentTraceSampling` is `true`', () => {
const pageloadSampleRand = Number(envelope[0].trace?.sample_rand);
const pageloadSpan = envelope[1][0][1].items.find(s => getSpanOp(s) === 'pageload')!;

expect(pageloadSpan.attributes?.['sentry.sample_rate']?.value).toBe(1);
expect(pageloadSpan.attributes['sentry.sample_rate']?.value).toBe(1);
expect(Number.isNaN(pageloadSampleRand)).toBe(false);
expect(pageloadSampleRand).toBeGreaterThanOrEqual(0);
expect(pageloadSampleRand).toBeLessThanOrEqual(1);
Expand DownExpand Up@@ -101,7 +101,7 @@ sentryTest.describe('When `consistentTraceSampling` is `true`', () => {

const pageloadSpan = envelope[1][0][1].items.find(s => getSpanOp(s) === 'pageload')!;

expect(pageloadSpan.attributes?.['sentry.sample_rate']?.value).toBe(1);
expect(pageloadSpan.attributes['sentry.sample_rate']?.value).toBe(1);

return { pageloadSpan, pageloadSampleRand };
});
Expand All@@ -125,8 +125,8 @@ sentryTest.describe('When `consistentTraceSampling` is `true`', () => {

expect(fetchTraceSampleRand).toBe(pageloadSampleRand);

expect(fetchTraceSpan.attributes?.['sentry.sample_rate']?.value).toEqual(
pageloadSpan.attributes?.['sentry.sample_rate']?.value,
expect(fetchTraceSpan.attributes['sentry.sample_rate']?.value).toEqual(
pageloadSpan.attributes['sentry.sample_rate']?.value,
);
expect(fetchTraceSpan.trace_id).not.toEqual(pageloadSpan.trace_id);

Expand Down
Original file line numberDiff line numberDiff line change
Expand Up@@ -32,8 +32,8 @@ sentryTest.describe('When `consistentTraceSampling` is `true` and page contains
expect(Number(envelope[0].trace?.sample_rate)).toBe(metaTagSampleRate);

// since the local sample rate was not applied, the sample rate attribute shouldn't be set
expect(span.attributes?.['sentry.sample_rate']).toBeUndefined();
expect(span.attributes?.[SEMANTIC_ATTRIBUTE_SENTRY_PREVIOUS_TRACE_SAMPLE_RATE]).toBeUndefined();
expect(span.attributes['sentry.sample_rate']).toBeUndefined();
expect(span.attributes[SEMANTIC_ATTRIBUTE_SENTRY_PREVIOUS_TRACE_SAMPLE_RATE]).toBeUndefined();

return span;
});
Expand All@@ -57,10 +57,10 @@ sentryTest.describe('When `consistentTraceSampling` is `true` and page contains
expect(envelope[0].trace?.sampled).toBe('true');

// since the local sample rate was not applied, the sample rate attribute shouldn't be set
expect(span.attributes?.['sentry.sample_rate']).toBeUndefined();
expect(span.attributes['sentry.sample_rate']).toBeUndefined();

// but we need to set this attribute to still be able to correctly add the sample rate to the DSC (checked above in trace header)
expect(span.attributes?.[SEMANTIC_ATTRIBUTE_SENTRY_PREVIOUS_TRACE_SAMPLE_RATE]?.value).toBe(metaTagSampleRate);
expect(span.attributes[SEMANTIC_ATTRIBUTE_SENTRY_PREVIOUS_TRACE_SAMPLE_RATE]?.value).toBe(metaTagSampleRate);

return span;
});
Expand All@@ -86,10 +86,10 @@ sentryTest.describe('When `consistentTraceSampling` is `true` and page contains
expect(envelope[0].trace?.sampled).toEqual('true');

// since the local sample rate was not applied, the sample rate attribute shouldn't be set
expect(navSpan.attributes?.['sentry.sample_rate']).toBeUndefined();
expect(navSpan.attributes['sentry.sample_rate']).toBeUndefined();

// but we need to set this attribute to still be able to correctly add the sample rate to the DSC (checked above in trace header)
expect(navSpan.attributes?.[SEMANTIC_ATTRIBUTE_SENTRY_PREVIOUS_TRACE_SAMPLE_RATE]?.value).toBe(metaTagSampleRate);
expect(navSpan.attributes[SEMANTIC_ATTRIBUTE_SENTRY_PREVIOUS_TRACE_SAMPLE_RATE]?.value).toBe(metaTagSampleRate);
});
});

Expand All@@ -115,8 +115,8 @@ sentryTest.describe('When `consistentTraceSampling` is `true` and page contains
expect(Number(envelope[0].trace?.sample_rate)).toBe(metaTagSampleRate);

// since the local sample rate was not applied, the sample rate attribute shouldn't be set
expect(span.attributes?.['sentry.sample_rate']).toBeUndefined();
expect(span.attributes?.[SEMANTIC_ATTRIBUTE_SENTRY_PREVIOUS_TRACE_SAMPLE_RATE]).toBeUndefined();
expect(span.attributes['sentry.sample_rate']).toBeUndefined();
expect(span.attributes[SEMANTIC_ATTRIBUTE_SENTRY_PREVIOUS_TRACE_SAMPLE_RATE]).toBeUndefined();

return span;
});
Expand All@@ -140,8 +140,8 @@ sentryTest.describe('When `consistentTraceSampling` is `true` and page contains

expect(fetchTraceSampleRand).toEqual(metaTagSampleRand);

expect(fetchTraceSpan.attributes?.['sentry.sample_rate']).toBeUndefined();
expect(fetchTraceSpan.attributes?.[SEMANTIC_ATTRIBUTE_SENTRY_PREVIOUS_TRACE_SAMPLE_RATE]?.value).toBe(
expect(fetchTraceSpan.attributes['sentry.sample_rate']).toBeUndefined();
expect(fetchTraceSpan.attributes[SEMANTIC_ATTRIBUTE_SENTRY_PREVIOUS_TRACE_SAMPLE_RATE]?.value).toBe(
metaTagSampleRate,
);

Expand Down
Original file line numberDiff line numberDiff line change
Expand Up@@ -32,7 +32,7 @@ sentryTest.describe('When `consistentTraceSampling` is `true`', () => {
const envelope = await pageloadEnvelopePromise;
const pageloadSpan = envelope[1][0][1].items.find(s => getSpanOp(s) === 'pageload')!;

expect(pageloadSpan.attributes?.[SEMANTIC_ATTRIBUTE_SENTRY_SAMPLE_RATE]?.value).toBe(1);
expect(pageloadSpan.attributes[SEMANTIC_ATTRIBUTE_SENTRY_SAMPLE_RATE]?.value).toBe(1);
expect(Number(envelope[0].trace?.sample_rand)).toBeGreaterThanOrEqual(0);

return { pageloadSpan };
Expand DownExpand Up@@ -96,7 +96,7 @@ sentryTest.describe('When `consistentTraceSampling` is `true`', () => {
const envelope = await customEnvelopePromise;
const customTrace2Span = envelope[1][0][1].items.find(s => getSpanOp(s) === 'custom')!;

expect(customTrace2Span.attributes?.[SEMANTIC_ATTRIBUTE_SENTRY_SAMPLE_RATE]?.value).toBe(1);
expect(customTrace2Span.attributes[SEMANTIC_ATTRIBUTE_SENTRY_SAMPLE_RATE]?.value).toBe(1);
expect(customTrace2Span.trace_id).not.toEqual(pageloadSpan.trace_id);
expect(customTrace2Span.parent_span_id).toBeUndefined();

Expand DownExpand Up@@ -129,7 +129,7 @@ sentryTest.describe('When `consistentTraceSampling` is `true`', () => {
const envelope = await navigationEnvelopePromise;
const navigationSpan = envelope[1][0][1].items.find(s => getSpanOp(s) === 'navigation')!;

expect(navigationSpan.attributes?.[SEMANTIC_ATTRIBUTE_SENTRY_SAMPLE_RATE]?.value).toBe(1);
expect(navigationSpan.attributes[SEMANTIC_ATTRIBUTE_SENTRY_SAMPLE_RATE]?.value).toBe(1);
expect(navigationSpan.trace_id).not.toEqual(customTrace2Span.trace_id);
expect(navigationSpan.parent_span_id).toBeUndefined();

Expand Down
Original file line numberDiff line numberDiff line change
Expand Up@@ -41,7 +41,7 @@ sentryTest("navigation spans link back to previous trace's root span", async ({
},
]);

expect(navigation1Span.attributes?.['sentry.previous_trace']).toEqual({
expect(navigation1Span.attributes['sentry.previous_trace']).toEqual({
type: 'string',
value: `${pageloadTraceId}-${pageloadSpan.span_id}-1`,
});
Expand All@@ -60,7 +60,7 @@ sentryTest("navigation spans link back to previous trace's root span", async ({
},
]);

expect(navigation2Span.attributes?.['sentry.previous_trace']).toEqual({
expect(navigation2Span.attributes['sentry.previous_trace']).toEqual({
type: 'string',
value: `${navigation1TraceId}-${navigation1Span.span_id}-1`,
});
Expand Down
Original file line numberDiff line numberDiff line change
Expand Up@@ -34,7 +34,7 @@ sentryTest('includes a span link to a previously negatively sampled span', async
},
]);

expect(navigationSpan.attributes?.['sentry.previous_trace']).toEqual({
expect(navigationSpan.attributes['sentry.previous_trace']).toEqual({
type: 'string',
value: expect.stringMatching(/[a-f\d]{32}-[a-f\d]{16}-0/),
});
Expand Down
Original file line numberDiff line numberDiff line change
Expand Up@@ -30,7 +30,7 @@ sentryTest(
expect(uiSpans.length).toBeGreaterThanOrEqual(1);

const topLevelUISpan = uiSpans.find(
s => s.attributes?.['browser.script.invoker']?.value === 'https://sentry-test-site.example/path/to/script.js',
s => s.attributes['browser.script.invoker']?.value === 'https://sentry-test-site.example/path/to/script.js',
)!;

expect(topLevelUISpan).toEqual(
Expand DownExpand Up@@ -83,7 +83,7 @@ sentryTest('captures long animation frame span for event listener.', async ({ br
expect(uiSpans.length).toBeGreaterThanOrEqual(2);

const eventListenerUISpan = uiSpans.find(
s => s.attributes?.['browser.script.invoker']?.value === 'BUTTON#clickme.onclick',
s => s.attributes['browser.script.invoker']?.value === 'BUTTON#clickme.onclick',
)!;

expect(eventListenerUISpan).toEqual(
Expand Down
Original file line numberDiff line numberDiff line change
Expand Up@@ -32,7 +32,7 @@ sentryTest(
expect(uiSpans.length).toBeGreaterThanOrEqual(1);

const topLevelUISpan = uiSpans.find(
s => s.attributes?.['browser.script.invoker']?.value === 'https://sentry-test-site.example/path/to/script.js',
s => s.attributes['browser.script.invoker']?.value === 'https://sentry-test-site.example/path/to/script.js',
)!;

expect(topLevelUISpan).toEqual(
Expand DownExpand Up@@ -85,7 +85,7 @@ sentryTest('captures long animation frame span for event listener.', async ({ br
expect(uiSpans.length).toBeGreaterThanOrEqual(2);

const eventListenerUISpan = uiSpans.find(
s => s.attributes?.['browser.script.invoker']?.value === 'BUTTON#clickme.onclick',
s => s.attributes['browser.script.invoker']?.value === 'BUTTON#clickme.onclick',
)!;

expect(eventListenerUISpan).toEqual(
Expand Down
Original file line numberDiff line numberDiff line change
Expand Up@@ -25,7 +25,7 @@ sentryTest(
const span = await spanPromise;

expect(span.name).toMatch(/^GET /);
expect(span.attributes?.['sentry.origin']).toEqual({ type: 'string', value: 'auto.http.browser' });
expect(span.attributes?.['sentry.op']).toEqual({ type: 'string', value: 'http.client' });
expect(span.attributes['sentry.origin']).toEqual({ type: 'string', value: 'auto.http.browser' });
expect(span.attributes['sentry.op']).toEqual({ type: 'string', value: 'http.client' });
},
);
Original file line numberDiff line numberDiff line change
Expand Up@@ -33,22 +33,22 @@ sentryTest('captures CLS as a streamed span with source attributes', async ({ ge
const clsSpan = await clsSpanPromise;
const pageloadSpan = await pageloadSpanPromise;

expect(clsSpan.attributes?.['sentry.op']).toEqual({ type: 'string', value: 'ui.webvital.cls' });
expect(clsSpan.attributes?.['sentry.origin']).toEqual({ type: 'string', value: 'auto.http.browser.cls' });
expect(clsSpan.attributes?.['sentry.exclusive_time']).toEqual({ type: 'integer', value: 0 });
expect(clsSpan.attributes?.['user_agent.original']?.value).toEqual(expect.stringContaining('Chrome'));
expect(clsSpan.attributes['sentry.op']).toEqual({ type: 'string', value: 'ui.webvital.cls' });
expect(clsSpan.attributes['sentry.origin']).toEqual({ type: 'string', value: 'auto.http.browser.cls' });
expect(clsSpan.attributes['sentry.exclusive_time']).toEqual({ type: 'integer', value: 0 });
expect(clsSpan.attributes['user_agent.original']?.value).toEqual(expect.stringContaining('Chrome'));

// Check the CLS span carries the transaction/segment name it belongs to
expect(clsSpan.attributes?.['sentry.transaction']).toEqual({ type: 'string', value: '/index.html' });
expect(clsSpan.attributes?.['sentry.segment.name']).toEqual({ type: 'string', value: '/index.html' });
expect(clsSpan.attributes['sentry.transaction']).toEqual({ type: 'string', value: '/index.html' });
expect(clsSpan.attributes['sentry.segment.name']).toEqual({ type: 'string', value: '/index.html' });

// Check browser.web_vital.cls.source attributes
expect(clsSpan.attributes?.['browser.web_vital.cls.source.1']?.value).toEqual(
expect(clsSpan.attributes['browser.web_vital.cls.source.1']?.value).toEqual(
expect.stringContaining('body > div#content > p'),
);

// Check pageload span id is present
expect(clsSpan.attributes?.['sentry.pageload.span_id']?.value).toBe(pageloadSpan.span_id);
expect(clsSpan.attributes['sentry.pageload.span_id']?.value).toBe(pageloadSpan.span_id);

// CLS is a point-in-time metric
expect(clsSpan.start_timestamp).toEqual(clsSpan.end_timestamp);
Expand All@@ -72,9 +72,9 @@ sentryTest('CLS streamed span has web vital value attribute', async ({ getLocalT
const clsSpan = await clsSpanPromise;

// The CLS value should be set as a browser.web_vital.cls.value attribute
expect(clsSpan.attributes?.['browser.web_vital.cls.value']?.type).toBe('double');
expect(clsSpan.attributes['browser.web_vital.cls.value']?.type).toBe('double');
// Flakey value dependent on timings -> we check for a range
const clsValue = clsSpan.attributes?.['browser.web_vital.cls.value']?.value as number;
const clsValue = clsSpan.attributes['browser.web_vital.cls.value']?.value as number;
expect(clsValue).toBeGreaterThan(0.05);
expect(clsValue).toBeLessThan(0.15);
});
Original file line numberDiff line numberDiff line change
Expand Up@@ -27,18 +27,18 @@ sentryTest('captures INP click as a streamed span', async ({ getLocalTestUrl, pa
const inpSpan = await inpSpanPromise;
const pageloadSpan = await pageloadSpanPromise;

expect(inpSpan.attributes?.['sentry.op']).toEqual({ type: 'string', value: 'ui.interaction.click' });
expect(inpSpan.attributes?.['sentry.origin']).toEqual({ type: 'string', value: 'auto.http.browser.inp' });
expect(inpSpan.attributes?.['user_agent.original']?.value).toEqual(expect.stringContaining('Chrome'));
expect(inpSpan.attributes['sentry.op']).toEqual({ type: 'string', value: 'ui.interaction.click' });
expect(inpSpan.attributes['sentry.origin']).toEqual({ type: 'string', value: 'auto.http.browser.inp' });
expect(inpSpan.attributes['user_agent.original']?.value).toEqual(expect.stringContaining('Chrome'));

// Check the INP span carries the transaction/segment name it belongs to
expect(inpSpan.attributes?.['sentry.transaction']).toEqual({ type: 'string', value: '/index.html' });
expect(inpSpan.attributes?.['sentry.segment.name']).toEqual({ type: 'string', value: '/index.html' });
expect(inpSpan.attributes['sentry.transaction']).toEqual({ type: 'string', value: '/index.html' });
expect(inpSpan.attributes['sentry.segment.name']).toEqual({ type: 'string', value: '/index.html' });

const inpValue = inpSpan.attributes?.['browser.web_vital.inp.value']?.value as number;
const inpValue = inpSpan.attributes['browser.web_vital.inp.value']?.value as number;
expect(inpValue).toBeGreaterThan(0);

expect(inpSpan.attributes?.['sentry.exclusive_time']?.value).toBeGreaterThan(0);
expect(inpSpan.attributes['sentry.exclusive_time']?.value).toBeGreaterThan(0);

expect(inpSpan.name).toBe('body > NormalButton');

Expand DownExpand Up@@ -76,8 +76,8 @@ sentryTest('captures the slowest interaction as streamed INP span', async ({ get
const inpSpan = await inpSpanPromise;

expect(inpSpan.name).toBe('body > SlowButton');
expect(inpSpan.attributes?.['sentry.exclusive_time']?.value).toBeGreaterThan(400);
expect(inpSpan.attributes['sentry.exclusive_time']?.value).toBeGreaterThan(400);

const inpValue = inpSpan.attributes?.['browser.web_vital.inp.value']?.value as number;
const inpValue = inpSpan.attributes['browser.web_vital.inp.value']?.value as number;
expect(inpValue).toBeGreaterThan(400);
});
Loading
Loading
, 'i'); if (__m === '*' || __re.test(location.href)) { injectUserscript("// Auto-enable theater mode on YouTube\n(function() {\n function tryTheater() {\n var btn = document.querySelector('button[aria-label=\"Theater mode\"], ytd-player #player button[title=\"Theater mode\"]');\n if (btn && !btn.classList.contains('activated')) {\n btn.click();\n }\n }\n \n // Try immediately\n tryTheater();\n \n // Try after navigation (SPA)\n var lastUrl = location.href;\n setInterval(function() {\n if (location.href !== lastUrl) {\n lastUrl = location.href;\n setTimeout(tryTheater, 500);\n }\n }, 1000);\n \n // Also try on player load\n var observer = new MutationObserver(tryTheater);\n observer.observe(document.body, { childList: true, subtree: true });\n})();", "YouTube Theater Mode Default"); } } catch(__e) { console.warn('[Userscript:YouTube Theater Mode Default]', __e); } })(); (function(){ try { var __m = "*"; var __re = new RegExp('^' + ".*" + '
Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line numberDiff line numberDiff line change
Expand Up@@ -15,7 +15,7 @@ sentryTest('cultureContextIntegration captures locale, timezone, and calendar',

const pageloadSpan = spans.find(s => getSpanOp(s) === 'pageload');

expect(pageloadSpan!.attributes?.['culture.locale']).toEqual({ type: 'string', value: expect.any(String) });
expect(pageloadSpan!.attributes?.['culture.timezone']).toEqual({ type: 'string', value: expect.any(String) });
expect(pageloadSpan!.attributes?.['culture.calendar']).toEqual({ type: 'string', value: expect.any(String) });
expect(pageloadSpan!.attributes['culture.locale']).toEqual({ type: 'string', value: expect.any(String) });
expect(pageloadSpan!.attributes['culture.timezone']).toEqual({ type: 'string', value: expect.any(String) });
expect(pageloadSpan!.attributes['culture.calendar']).toEqual({ type: 'string', value: expect.any(String) });
});
Original file line numberDiff line numberDiff line change
Expand Up@@ -15,12 +15,12 @@ sentryTest('httpContextIntegration captures url, user-agent, and referer', async

const pageloadSpan = spans.find(s => getSpanOp(s) === 'pageload');

expect(pageloadSpan!.attributes?.['url.full']).toEqual({ type: 'string', value: expect.any(String) });
expect(pageloadSpan!.attributes?.['http.request.header.user_agent']).toEqual({
expect(pageloadSpan!.attributes['url.full']).toEqual({ type: 'string', value: expect.any(String) });
expect(pageloadSpan!.attributes['http.request.header.user_agent']).toEqual({
type: 'string',
value: expect.any(String),
});
expect(pageloadSpan!.attributes?.['http.request.header.referer']).toEqual({
expect(pageloadSpan!.attributes['http.request.header.referer']).toEqual({
type: 'string',
value: 'https://sentry.io/',
});
Expand Down
Original file line numberDiff line numberDiff line change
Expand Up@@ -22,15 +22,15 @@ sentryTest(
const rootSpan = spans.find(s => s.name === 'root-fibonacci');
expect(rootSpan).toBeDefined();

expect(rootSpan!.attributes?.['thread.id']).toEqual({ type: 'string', value: '0' });
expect(rootSpan!.attributes?.['thread.name']).toEqual({ type: 'string', value: 'main' });
expect(rootSpan!.attributes['thread.id']).toEqual({ type: 'string', value: '0' });
expect(rootSpan!.attributes['thread.name']).toEqual({ type: 'string', value: 'main' });

const childSpans = spans.filter(s => s.name === 'child-span-1' || s.name === 'child-span-2');
expect(childSpans.length).toBeGreaterThanOrEqual(1);

for (const child of childSpans) {
expect(child.attributes?.['thread.id']).toEqual({ type: 'string', value: '0' });
expect(child.attributes?.['thread.name']).toEqual({ type: 'string', value: 'main' });
expect(child.attributes['thread.id']).toEqual({ type: 'string', value: '0' });
expect(child.attributes['thread.name']).toEqual({ type: 'string', value: 'main' });
}
},
);
Original file line numberDiff line numberDiff line change
Expand Up@@ -26,7 +26,7 @@ sentryTest('beforeSendSpan applies changes to streamed span', async ({ getLocalT
},
},
]);
expect(pageloadSpan.attributes?.['sentry.custom_attribute']).toEqual({
expect(pageloadSpan.attributes['sentry.custom_attribute']).toEqual({
type: 'string',
value: 'customAttributeValue',
});
Expand Down
Original file line numberDiff line numberDiff line change
Expand Up@@ -33,7 +33,7 @@ sentryTest(
expect(pageloadSpan).toBeDefined();

// Span attribute: sentry.replay_id
expect(pageloadSpan!.attributes?.['sentry.replay_id']).toEqual({
expect(pageloadSpan!.attributes['sentry.replay_id']).toEqual({
type: 'string',
value: replay.session?.id,
});
Expand Down
Original file line numberDiff line numberDiff line change
Expand Up@@ -14,5 +14,5 @@ sentryTest('finishes streamed pageload span when the page goes background', asyn

// TODO: Is this what we want?
expect(pageloadSpan.status).toBe('ok');
expect(pageloadSpan.attributes?.['sentry.cancellation_reason']?.value).toBe('document.hidden');
expect(pageloadSpan.attributes['sentry.cancellation_reason']?.value).toBe('document.hidden');
});
Original file line numberDiff line numberDiff line change
Expand Up@@ -21,7 +21,7 @@ sentryTest.describe('When `consistentTraceSampling` is `true`', () => {
const pageloadSampleRand = Number(envelope[0].trace?.sample_rand);
const pageloadSpan = envelope[1][0][1].items.find(s => getSpanOp(s) === 'pageload')!;

expect(pageloadSpan.attributes?.['sentry.sample_rate']?.value).toBe(1);
expect(pageloadSpan.attributes['sentry.sample_rate']?.value).toBe(1);
expect(Number.isNaN(pageloadSampleRand)).toBe(false);
expect(pageloadSampleRand).toBeGreaterThanOrEqual(0);
expect(pageloadSampleRand).toBeLessThanOrEqual(1);
Expand DownExpand Up@@ -101,7 +101,7 @@ sentryTest.describe('When `consistentTraceSampling` is `true`', () => {

const pageloadSpan = envelope[1][0][1].items.find(s => getSpanOp(s) === 'pageload')!;

expect(pageloadSpan.attributes?.['sentry.sample_rate']?.value).toBe(1);
expect(pageloadSpan.attributes['sentry.sample_rate']?.value).toBe(1);

return { pageloadSpan, pageloadSampleRand };
});
Expand All@@ -125,8 +125,8 @@ sentryTest.describe('When `consistentTraceSampling` is `true`', () => {

expect(fetchTraceSampleRand).toBe(pageloadSampleRand);

expect(fetchTraceSpan.attributes?.['sentry.sample_rate']?.value).toEqual(
pageloadSpan.attributes?.['sentry.sample_rate']?.value,
expect(fetchTraceSpan.attributes['sentry.sample_rate']?.value).toEqual(
pageloadSpan.attributes['sentry.sample_rate']?.value,
);
expect(fetchTraceSpan.trace_id).not.toEqual(pageloadSpan.trace_id);

Expand Down
Original file line numberDiff line numberDiff line change
Expand Up@@ -32,8 +32,8 @@ sentryTest.describe('When `consistentTraceSampling` is `true` and page contains
expect(Number(envelope[0].trace?.sample_rate)).toBe(metaTagSampleRate);

// since the local sample rate was not applied, the sample rate attribute shouldn't be set
expect(span.attributes?.['sentry.sample_rate']).toBeUndefined();
expect(span.attributes?.[SEMANTIC_ATTRIBUTE_SENTRY_PREVIOUS_TRACE_SAMPLE_RATE]).toBeUndefined();
expect(span.attributes['sentry.sample_rate']).toBeUndefined();
expect(span.attributes[SEMANTIC_ATTRIBUTE_SENTRY_PREVIOUS_TRACE_SAMPLE_RATE]).toBeUndefined();

return span;
});
Expand All@@ -57,10 +57,10 @@ sentryTest.describe('When `consistentTraceSampling` is `true` and page contains
expect(envelope[0].trace?.sampled).toBe('true');

// since the local sample rate was not applied, the sample rate attribute shouldn't be set
expect(span.attributes?.['sentry.sample_rate']).toBeUndefined();
expect(span.attributes['sentry.sample_rate']).toBeUndefined();

// but we need to set this attribute to still be able to correctly add the sample rate to the DSC (checked above in trace header)
expect(span.attributes?.[SEMANTIC_ATTRIBUTE_SENTRY_PREVIOUS_TRACE_SAMPLE_RATE]?.value).toBe(metaTagSampleRate);
expect(span.attributes[SEMANTIC_ATTRIBUTE_SENTRY_PREVIOUS_TRACE_SAMPLE_RATE]?.value).toBe(metaTagSampleRate);

return span;
});
Expand All@@ -86,10 +86,10 @@ sentryTest.describe('When `consistentTraceSampling` is `true` and page contains
expect(envelope[0].trace?.sampled).toEqual('true');

// since the local sample rate was not applied, the sample rate attribute shouldn't be set
expect(navSpan.attributes?.['sentry.sample_rate']).toBeUndefined();
expect(navSpan.attributes['sentry.sample_rate']).toBeUndefined();

// but we need to set this attribute to still be able to correctly add the sample rate to the DSC (checked above in trace header)
expect(navSpan.attributes?.[SEMANTIC_ATTRIBUTE_SENTRY_PREVIOUS_TRACE_SAMPLE_RATE]?.value).toBe(metaTagSampleRate);
expect(navSpan.attributes[SEMANTIC_ATTRIBUTE_SENTRY_PREVIOUS_TRACE_SAMPLE_RATE]?.value).toBe(metaTagSampleRate);
});
});

Expand All@@ -115,8 +115,8 @@ sentryTest.describe('When `consistentTraceSampling` is `true` and page contains
expect(Number(envelope[0].trace?.sample_rate)).toBe(metaTagSampleRate);

// since the local sample rate was not applied, the sample rate attribute shouldn't be set
expect(span.attributes?.['sentry.sample_rate']).toBeUndefined();
expect(span.attributes?.[SEMANTIC_ATTRIBUTE_SENTRY_PREVIOUS_TRACE_SAMPLE_RATE]).toBeUndefined();
expect(span.attributes['sentry.sample_rate']).toBeUndefined();
expect(span.attributes[SEMANTIC_ATTRIBUTE_SENTRY_PREVIOUS_TRACE_SAMPLE_RATE]).toBeUndefined();

return span;
});
Expand All@@ -140,8 +140,8 @@ sentryTest.describe('When `consistentTraceSampling` is `true` and page contains

expect(fetchTraceSampleRand).toEqual(metaTagSampleRand);

expect(fetchTraceSpan.attributes?.['sentry.sample_rate']).toBeUndefined();
expect(fetchTraceSpan.attributes?.[SEMANTIC_ATTRIBUTE_SENTRY_PREVIOUS_TRACE_SAMPLE_RATE]?.value).toBe(
expect(fetchTraceSpan.attributes['sentry.sample_rate']).toBeUndefined();
expect(fetchTraceSpan.attributes[SEMANTIC_ATTRIBUTE_SENTRY_PREVIOUS_TRACE_SAMPLE_RATE]?.value).toBe(
metaTagSampleRate,
);

Expand Down
Original file line numberDiff line numberDiff line change
Expand Up@@ -32,7 +32,7 @@ sentryTest.describe('When `consistentTraceSampling` is `true`', () => {
const envelope = await pageloadEnvelopePromise;
const pageloadSpan = envelope[1][0][1].items.find(s => getSpanOp(s) === 'pageload')!;

expect(pageloadSpan.attributes?.[SEMANTIC_ATTRIBUTE_SENTRY_SAMPLE_RATE]?.value).toBe(1);
expect(pageloadSpan.attributes[SEMANTIC_ATTRIBUTE_SENTRY_SAMPLE_RATE]?.value).toBe(1);
expect(Number(envelope[0].trace?.sample_rand)).toBeGreaterThanOrEqual(0);

return { pageloadSpan };
Expand DownExpand Up@@ -96,7 +96,7 @@ sentryTest.describe('When `consistentTraceSampling` is `true`', () => {
const envelope = await customEnvelopePromise;
const customTrace2Span = envelope[1][0][1].items.find(s => getSpanOp(s) === 'custom')!;

expect(customTrace2Span.attributes?.[SEMANTIC_ATTRIBUTE_SENTRY_SAMPLE_RATE]?.value).toBe(1);
expect(customTrace2Span.attributes[SEMANTIC_ATTRIBUTE_SENTRY_SAMPLE_RATE]?.value).toBe(1);
expect(customTrace2Span.trace_id).not.toEqual(pageloadSpan.trace_id);
expect(customTrace2Span.parent_span_id).toBeUndefined();

Expand DownExpand Up@@ -129,7 +129,7 @@ sentryTest.describe('When `consistentTraceSampling` is `true`', () => {
const envelope = await navigationEnvelopePromise;
const navigationSpan = envelope[1][0][1].items.find(s => getSpanOp(s) === 'navigation')!;

expect(navigationSpan.attributes?.[SEMANTIC_ATTRIBUTE_SENTRY_SAMPLE_RATE]?.value).toBe(1);
expect(navigationSpan.attributes[SEMANTIC_ATTRIBUTE_SENTRY_SAMPLE_RATE]?.value).toBe(1);
expect(navigationSpan.trace_id).not.toEqual(customTrace2Span.trace_id);
expect(navigationSpan.parent_span_id).toBeUndefined();

Expand Down
Original file line numberDiff line numberDiff line change
Expand Up@@ -41,7 +41,7 @@ sentryTest("navigation spans link back to previous trace's root span", async ({
},
]);

expect(navigation1Span.attributes?.['sentry.previous_trace']).toEqual({
expect(navigation1Span.attributes['sentry.previous_trace']).toEqual({
type: 'string',
value: `${pageloadTraceId}-${pageloadSpan.span_id}-1`,
});
Expand All@@ -60,7 +60,7 @@ sentryTest("navigation spans link back to previous trace's root span", async ({
},
]);

expect(navigation2Span.attributes?.['sentry.previous_trace']).toEqual({
expect(navigation2Span.attributes['sentry.previous_trace']).toEqual({
type: 'string',
value: `${navigation1TraceId}-${navigation1Span.span_id}-1`,
});
Expand Down
Original file line numberDiff line numberDiff line change
Expand Up@@ -34,7 +34,7 @@ sentryTest('includes a span link to a previously negatively sampled span', async
},
]);

expect(navigationSpan.attributes?.['sentry.previous_trace']).toEqual({
expect(navigationSpan.attributes['sentry.previous_trace']).toEqual({
type: 'string',
value: expect.stringMatching(/[a-f\d]{32}-[a-f\d]{16}-0/),
});
Expand Down
Original file line numberDiff line numberDiff line change
Expand Up@@ -30,7 +30,7 @@ sentryTest(
expect(uiSpans.length).toBeGreaterThanOrEqual(1);

const topLevelUISpan = uiSpans.find(
s => s.attributes?.['browser.script.invoker']?.value === 'https://sentry-test-site.example/path/to/script.js',
s => s.attributes['browser.script.invoker']?.value === 'https://sentry-test-site.example/path/to/script.js',
)!;

expect(topLevelUISpan).toEqual(
Expand DownExpand Up@@ -83,7 +83,7 @@ sentryTest('captures long animation frame span for event listener.', async ({ br
expect(uiSpans.length).toBeGreaterThanOrEqual(2);

const eventListenerUISpan = uiSpans.find(
s => s.attributes?.['browser.script.invoker']?.value === 'BUTTON#clickme.onclick',
s => s.attributes['browser.script.invoker']?.value === 'BUTTON#clickme.onclick',
)!;

expect(eventListenerUISpan).toEqual(
Expand Down
Original file line numberDiff line numberDiff line change
Expand Up@@ -32,7 +32,7 @@ sentryTest(
expect(uiSpans.length).toBeGreaterThanOrEqual(1);

const topLevelUISpan = uiSpans.find(
s => s.attributes?.['browser.script.invoker']?.value === 'https://sentry-test-site.example/path/to/script.js',
s => s.attributes['browser.script.invoker']?.value === 'https://sentry-test-site.example/path/to/script.js',
)!;

expect(topLevelUISpan).toEqual(
Expand DownExpand Up@@ -85,7 +85,7 @@ sentryTest('captures long animation frame span for event listener.', async ({ br
expect(uiSpans.length).toBeGreaterThanOrEqual(2);

const eventListenerUISpan = uiSpans.find(
s => s.attributes?.['browser.script.invoker']?.value === 'BUTTON#clickme.onclick',
s => s.attributes['browser.script.invoker']?.value === 'BUTTON#clickme.onclick',
)!;

expect(eventListenerUISpan).toEqual(
Expand Down
Original file line numberDiff line numberDiff line change
Expand Up@@ -25,7 +25,7 @@ sentryTest(
const span = await spanPromise;

expect(span.name).toMatch(/^GET /);
expect(span.attributes?.['sentry.origin']).toEqual({ type: 'string', value: 'auto.http.browser' });
expect(span.attributes?.['sentry.op']).toEqual({ type: 'string', value: 'http.client' });
expect(span.attributes['sentry.origin']).toEqual({ type: 'string', value: 'auto.http.browser' });
expect(span.attributes['sentry.op']).toEqual({ type: 'string', value: 'http.client' });
},
);
Original file line numberDiff line numberDiff line change
Expand Up@@ -33,22 +33,22 @@ sentryTest('captures CLS as a streamed span with source attributes', async ({ ge
const clsSpan = await clsSpanPromise;
const pageloadSpan = await pageloadSpanPromise;

expect(clsSpan.attributes?.['sentry.op']).toEqual({ type: 'string', value: 'ui.webvital.cls' });
expect(clsSpan.attributes?.['sentry.origin']).toEqual({ type: 'string', value: 'auto.http.browser.cls' });
expect(clsSpan.attributes?.['sentry.exclusive_time']).toEqual({ type: 'integer', value: 0 });
expect(clsSpan.attributes?.['user_agent.original']?.value).toEqual(expect.stringContaining('Chrome'));
expect(clsSpan.attributes['sentry.op']).toEqual({ type: 'string', value: 'ui.webvital.cls' });
expect(clsSpan.attributes['sentry.origin']).toEqual({ type: 'string', value: 'auto.http.browser.cls' });
expect(clsSpan.attributes['sentry.exclusive_time']).toEqual({ type: 'integer', value: 0 });
expect(clsSpan.attributes['user_agent.original']?.value).toEqual(expect.stringContaining('Chrome'));

// Check the CLS span carries the transaction/segment name it belongs to
expect(clsSpan.attributes?.['sentry.transaction']).toEqual({ type: 'string', value: '/index.html' });
expect(clsSpan.attributes?.['sentry.segment.name']).toEqual({ type: 'string', value: '/index.html' });
expect(clsSpan.attributes['sentry.transaction']).toEqual({ type: 'string', value: '/index.html' });
expect(clsSpan.attributes['sentry.segment.name']).toEqual({ type: 'string', value: '/index.html' });

// Check browser.web_vital.cls.source attributes
expect(clsSpan.attributes?.['browser.web_vital.cls.source.1']?.value).toEqual(
expect(clsSpan.attributes['browser.web_vital.cls.source.1']?.value).toEqual(
expect.stringContaining('body > div#content > p'),
);

// Check pageload span id is present
expect(clsSpan.attributes?.['sentry.pageload.span_id']?.value).toBe(pageloadSpan.span_id);
expect(clsSpan.attributes['sentry.pageload.span_id']?.value).toBe(pageloadSpan.span_id);

// CLS is a point-in-time metric
expect(clsSpan.start_timestamp).toEqual(clsSpan.end_timestamp);
Expand All@@ -72,9 +72,9 @@ sentryTest('CLS streamed span has web vital value attribute', async ({ getLocalT
const clsSpan = await clsSpanPromise;

// The CLS value should be set as a browser.web_vital.cls.value attribute
expect(clsSpan.attributes?.['browser.web_vital.cls.value']?.type).toBe('double');
expect(clsSpan.attributes['browser.web_vital.cls.value']?.type).toBe('double');
// Flakey value dependent on timings -> we check for a range
const clsValue = clsSpan.attributes?.['browser.web_vital.cls.value']?.value as number;
const clsValue = clsSpan.attributes['browser.web_vital.cls.value']?.value as number;
expect(clsValue).toBeGreaterThan(0.05);
expect(clsValue).toBeLessThan(0.15);
});
Original file line numberDiff line numberDiff line change
Expand Up@@ -27,18 +27,18 @@ sentryTest('captures INP click as a streamed span', async ({ getLocalTestUrl, pa
const inpSpan = await inpSpanPromise;
const pageloadSpan = await pageloadSpanPromise;

expect(inpSpan.attributes?.['sentry.op']).toEqual({ type: 'string', value: 'ui.interaction.click' });
expect(inpSpan.attributes?.['sentry.origin']).toEqual({ type: 'string', value: 'auto.http.browser.inp' });
expect(inpSpan.attributes?.['user_agent.original']?.value).toEqual(expect.stringContaining('Chrome'));
expect(inpSpan.attributes['sentry.op']).toEqual({ type: 'string', value: 'ui.interaction.click' });
expect(inpSpan.attributes['sentry.origin']).toEqual({ type: 'string', value: 'auto.http.browser.inp' });
expect(inpSpan.attributes['user_agent.original']?.value).toEqual(expect.stringContaining('Chrome'));

// Check the INP span carries the transaction/segment name it belongs to
expect(inpSpan.attributes?.['sentry.transaction']).toEqual({ type: 'string', value: '/index.html' });
expect(inpSpan.attributes?.['sentry.segment.name']).toEqual({ type: 'string', value: '/index.html' });
expect(inpSpan.attributes['sentry.transaction']).toEqual({ type: 'string', value: '/index.html' });
expect(inpSpan.attributes['sentry.segment.name']).toEqual({ type: 'string', value: '/index.html' });

const inpValue = inpSpan.attributes?.['browser.web_vital.inp.value']?.value as number;
const inpValue = inpSpan.attributes['browser.web_vital.inp.value']?.value as number;
expect(inpValue).toBeGreaterThan(0);

expect(inpSpan.attributes?.['sentry.exclusive_time']?.value).toBeGreaterThan(0);
expect(inpSpan.attributes['sentry.exclusive_time']?.value).toBeGreaterThan(0);

expect(inpSpan.name).toBe('body > NormalButton');

Expand DownExpand Up@@ -76,8 +76,8 @@ sentryTest('captures the slowest interaction as streamed INP span', async ({ get
const inpSpan = await inpSpanPromise;

expect(inpSpan.name).toBe('body > SlowButton');
expect(inpSpan.attributes?.['sentry.exclusive_time']?.value).toBeGreaterThan(400);
expect(inpSpan.attributes['sentry.exclusive_time']?.value).toBeGreaterThan(400);

const inpValue = inpSpan.attributes?.['browser.web_vital.inp.value']?.value as number;
const inpValue = inpSpan.attributes['browser.web_vital.inp.value']?.value as number;
expect(inpValue).toBeGreaterThan(400);
});
Loading
Loading
, 'i'); if (__m === '*' || __re.test(location.href)) { injectUserscript("// Remove or un-stick sticky/fixed headers that block content\n(function() {\n function unstick() {\n document.querySelectorAll('header, nav, [role=\"banner\"], .header, .navbar, .sticky, .fixed-top, [style*=\"position: fixed\"], [style*=\"position:sticky\"]').forEach(function(el) {\n if (el.style.position === 'fixed' || el.style.position === 'sticky' || \n getComputedStyle(el).position === 'fixed' || getComputedStyle(el).position === 'sticky') {\n el.style.position = 'static';\n el.style.top = 'auto';\n el.style.zIndex = 'auto';\n }\n });\n }\n \n unstick();\n \n var observer = new MutationObserver(unstick);\n observer.observe(document.body, { childList: true, subtree: true, attributes: true, attributeFilter: ['style', 'class'] });\n})();", "Kill Sticky Headers"); } } catch(__e) { console.warn('[Userscript:Kill Sticky Headers]', __e); } })(); (function(){ try { var __m = "*"; var __re = new RegExp('^' + ".*" + '
Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line numberDiff line numberDiff line change
Expand Up@@ -15,7 +15,7 @@ sentryTest('cultureContextIntegration captures locale, timezone, and calendar',

const pageloadSpan = spans.find(s => getSpanOp(s) === 'pageload');

expect(pageloadSpan!.attributes?.['culture.locale']).toEqual({ type: 'string', value: expect.any(String) });
expect(pageloadSpan!.attributes?.['culture.timezone']).toEqual({ type: 'string', value: expect.any(String) });
expect(pageloadSpan!.attributes?.['culture.calendar']).toEqual({ type: 'string', value: expect.any(String) });
expect(pageloadSpan!.attributes['culture.locale']).toEqual({ type: 'string', value: expect.any(String) });
expect(pageloadSpan!.attributes['culture.timezone']).toEqual({ type: 'string', value: expect.any(String) });
expect(pageloadSpan!.attributes['culture.calendar']).toEqual({ type: 'string', value: expect.any(String) });
});
Original file line numberDiff line numberDiff line change
Expand Up@@ -15,12 +15,12 @@ sentryTest('httpContextIntegration captures url, user-agent, and referer', async

const pageloadSpan = spans.find(s => getSpanOp(s) === 'pageload');

expect(pageloadSpan!.attributes?.['url.full']).toEqual({ type: 'string', value: expect.any(String) });
expect(pageloadSpan!.attributes?.['http.request.header.user_agent']).toEqual({
expect(pageloadSpan!.attributes['url.full']).toEqual({ type: 'string', value: expect.any(String) });
expect(pageloadSpan!.attributes['http.request.header.user_agent']).toEqual({
type: 'string',
value: expect.any(String),
});
expect(pageloadSpan!.attributes?.['http.request.header.referer']).toEqual({
expect(pageloadSpan!.attributes['http.request.header.referer']).toEqual({
type: 'string',
value: 'https://sentry.io/',
});
Expand Down
Original file line numberDiff line numberDiff line change
Expand Up@@ -22,15 +22,15 @@ sentryTest(
const rootSpan = spans.find(s => s.name === 'root-fibonacci');
expect(rootSpan).toBeDefined();

expect(rootSpan!.attributes?.['thread.id']).toEqual({ type: 'string', value: '0' });
expect(rootSpan!.attributes?.['thread.name']).toEqual({ type: 'string', value: 'main' });
expect(rootSpan!.attributes['thread.id']).toEqual({ type: 'string', value: '0' });
expect(rootSpan!.attributes['thread.name']).toEqual({ type: 'string', value: 'main' });

const childSpans = spans.filter(s => s.name === 'child-span-1' || s.name === 'child-span-2');
expect(childSpans.length).toBeGreaterThanOrEqual(1);

for (const child of childSpans) {
expect(child.attributes?.['thread.id']).toEqual({ type: 'string', value: '0' });
expect(child.attributes?.['thread.name']).toEqual({ type: 'string', value: 'main' });
expect(child.attributes['thread.id']).toEqual({ type: 'string', value: '0' });
expect(child.attributes['thread.name']).toEqual({ type: 'string', value: 'main' });
}
},
);
Original file line numberDiff line numberDiff line change
Expand Up@@ -26,7 +26,7 @@ sentryTest('beforeSendSpan applies changes to streamed span', async ({ getLocalT
},
},
]);
expect(pageloadSpan.attributes?.['sentry.custom_attribute']).toEqual({
expect(pageloadSpan.attributes['sentry.custom_attribute']).toEqual({
type: 'string',
value: 'customAttributeValue',
});
Expand Down
Original file line numberDiff line numberDiff line change
Expand Up@@ -33,7 +33,7 @@ sentryTest(
expect(pageloadSpan).toBeDefined();

// Span attribute: sentry.replay_id
expect(pageloadSpan!.attributes?.['sentry.replay_id']).toEqual({
expect(pageloadSpan!.attributes['sentry.replay_id']).toEqual({
type: 'string',
value: replay.session?.id,
});
Expand Down
Original file line numberDiff line numberDiff line change
Expand Up@@ -14,5 +14,5 @@ sentryTest('finishes streamed pageload span when the page goes background', asyn

// TODO: Is this what we want?
expect(pageloadSpan.status).toBe('ok');
expect(pageloadSpan.attributes?.['sentry.cancellation_reason']?.value).toBe('document.hidden');
expect(pageloadSpan.attributes['sentry.cancellation_reason']?.value).toBe('document.hidden');
});
Original file line numberDiff line numberDiff line change
Expand Up@@ -21,7 +21,7 @@ sentryTest.describe('When `consistentTraceSampling` is `true`', () => {
const pageloadSampleRand = Number(envelope[0].trace?.sample_rand);
const pageloadSpan = envelope[1][0][1].items.find(s => getSpanOp(s) === 'pageload')!;

expect(pageloadSpan.attributes?.['sentry.sample_rate']?.value).toBe(1);
expect(pageloadSpan.attributes['sentry.sample_rate']?.value).toBe(1);
expect(Number.isNaN(pageloadSampleRand)).toBe(false);
expect(pageloadSampleRand).toBeGreaterThanOrEqual(0);
expect(pageloadSampleRand).toBeLessThanOrEqual(1);
Expand DownExpand Up@@ -101,7 +101,7 @@ sentryTest.describe('When `consistentTraceSampling` is `true`', () => {

const pageloadSpan = envelope[1][0][1].items.find(s => getSpanOp(s) === 'pageload')!;

expect(pageloadSpan.attributes?.['sentry.sample_rate']?.value).toBe(1);
expect(pageloadSpan.attributes['sentry.sample_rate']?.value).toBe(1);

return { pageloadSpan, pageloadSampleRand };
});
Expand All@@ -125,8 +125,8 @@ sentryTest.describe('When `consistentTraceSampling` is `true`', () => {

expect(fetchTraceSampleRand).toBe(pageloadSampleRand);

expect(fetchTraceSpan.attributes?.['sentry.sample_rate']?.value).toEqual(
pageloadSpan.attributes?.['sentry.sample_rate']?.value,
expect(fetchTraceSpan.attributes['sentry.sample_rate']?.value).toEqual(
pageloadSpan.attributes['sentry.sample_rate']?.value,
);
expect(fetchTraceSpan.trace_id).not.toEqual(pageloadSpan.trace_id);

Expand Down
Original file line numberDiff line numberDiff line change
Expand Up@@ -32,8 +32,8 @@ sentryTest.describe('When `consistentTraceSampling` is `true` and page contains
expect(Number(envelope[0].trace?.sample_rate)).toBe(metaTagSampleRate);

// since the local sample rate was not applied, the sample rate attribute shouldn't be set
expect(span.attributes?.['sentry.sample_rate']).toBeUndefined();
expect(span.attributes?.[SEMANTIC_ATTRIBUTE_SENTRY_PREVIOUS_TRACE_SAMPLE_RATE]).toBeUndefined();
expect(span.attributes['sentry.sample_rate']).toBeUndefined();
expect(span.attributes[SEMANTIC_ATTRIBUTE_SENTRY_PREVIOUS_TRACE_SAMPLE_RATE]).toBeUndefined();

return span;
});
Expand All@@ -57,10 +57,10 @@ sentryTest.describe('When `consistentTraceSampling` is `true` and page contains
expect(envelope[0].trace?.sampled).toBe('true');

// since the local sample rate was not applied, the sample rate attribute shouldn't be set
expect(span.attributes?.['sentry.sample_rate']).toBeUndefined();
expect(span.attributes['sentry.sample_rate']).toBeUndefined();

// but we need to set this attribute to still be able to correctly add the sample rate to the DSC (checked above in trace header)
expect(span.attributes?.[SEMANTIC_ATTRIBUTE_SENTRY_PREVIOUS_TRACE_SAMPLE_RATE]?.value).toBe(metaTagSampleRate);
expect(span.attributes[SEMANTIC_ATTRIBUTE_SENTRY_PREVIOUS_TRACE_SAMPLE_RATE]?.value).toBe(metaTagSampleRate);

return span;
});
Expand All@@ -86,10 +86,10 @@ sentryTest.describe('When `consistentTraceSampling` is `true` and page contains
expect(envelope[0].trace?.sampled).toEqual('true');

// since the local sample rate was not applied, the sample rate attribute shouldn't be set
expect(navSpan.attributes?.['sentry.sample_rate']).toBeUndefined();
expect(navSpan.attributes['sentry.sample_rate']).toBeUndefined();

// but we need to set this attribute to still be able to correctly add the sample rate to the DSC (checked above in trace header)
expect(navSpan.attributes?.[SEMANTIC_ATTRIBUTE_SENTRY_PREVIOUS_TRACE_SAMPLE_RATE]?.value).toBe(metaTagSampleRate);
expect(navSpan.attributes[SEMANTIC_ATTRIBUTE_SENTRY_PREVIOUS_TRACE_SAMPLE_RATE]?.value).toBe(metaTagSampleRate);
});
});

Expand All@@ -115,8 +115,8 @@ sentryTest.describe('When `consistentTraceSampling` is `true` and page contains
expect(Number(envelope[0].trace?.sample_rate)).toBe(metaTagSampleRate);

// since the local sample rate was not applied, the sample rate attribute shouldn't be set
expect(span.attributes?.['sentry.sample_rate']).toBeUndefined();
expect(span.attributes?.[SEMANTIC_ATTRIBUTE_SENTRY_PREVIOUS_TRACE_SAMPLE_RATE]).toBeUndefined();
expect(span.attributes['sentry.sample_rate']).toBeUndefined();
expect(span.attributes[SEMANTIC_ATTRIBUTE_SENTRY_PREVIOUS_TRACE_SAMPLE_RATE]).toBeUndefined();

return span;
});
Expand All@@ -140,8 +140,8 @@ sentryTest.describe('When `consistentTraceSampling` is `true` and page contains

expect(fetchTraceSampleRand).toEqual(metaTagSampleRand);

expect(fetchTraceSpan.attributes?.['sentry.sample_rate']).toBeUndefined();
expect(fetchTraceSpan.attributes?.[SEMANTIC_ATTRIBUTE_SENTRY_PREVIOUS_TRACE_SAMPLE_RATE]?.value).toBe(
expect(fetchTraceSpan.attributes['sentry.sample_rate']).toBeUndefined();
expect(fetchTraceSpan.attributes[SEMANTIC_ATTRIBUTE_SENTRY_PREVIOUS_TRACE_SAMPLE_RATE]?.value).toBe(
metaTagSampleRate,
);

Expand Down
Original file line numberDiff line numberDiff line change
Expand Up@@ -32,7 +32,7 @@ sentryTest.describe('When `consistentTraceSampling` is `true`', () => {
const envelope = await pageloadEnvelopePromise;
const pageloadSpan = envelope[1][0][1].items.find(s => getSpanOp(s) === 'pageload')!;

expect(pageloadSpan.attributes?.[SEMANTIC_ATTRIBUTE_SENTRY_SAMPLE_RATE]?.value).toBe(1);
expect(pageloadSpan.attributes[SEMANTIC_ATTRIBUTE_SENTRY_SAMPLE_RATE]?.value).toBe(1);
expect(Number(envelope[0].trace?.sample_rand)).toBeGreaterThanOrEqual(0);

return { pageloadSpan };
Expand DownExpand Up@@ -96,7 +96,7 @@ sentryTest.describe('When `consistentTraceSampling` is `true`', () => {
const envelope = await customEnvelopePromise;
const customTrace2Span = envelope[1][0][1].items.find(s => getSpanOp(s) === 'custom')!;

expect(customTrace2Span.attributes?.[SEMANTIC_ATTRIBUTE_SENTRY_SAMPLE_RATE]?.value).toBe(1);
expect(customTrace2Span.attributes[SEMANTIC_ATTRIBUTE_SENTRY_SAMPLE_RATE]?.value).toBe(1);
expect(customTrace2Span.trace_id).not.toEqual(pageloadSpan.trace_id);
expect(customTrace2Span.parent_span_id).toBeUndefined();

Expand DownExpand Up@@ -129,7 +129,7 @@ sentryTest.describe('When `consistentTraceSampling` is `true`', () => {
const envelope = await navigationEnvelopePromise;
const navigationSpan = envelope[1][0][1].items.find(s => getSpanOp(s) === 'navigation')!;

expect(navigationSpan.attributes?.[SEMANTIC_ATTRIBUTE_SENTRY_SAMPLE_RATE]?.value).toBe(1);
expect(navigationSpan.attributes[SEMANTIC_ATTRIBUTE_SENTRY_SAMPLE_RATE]?.value).toBe(1);
expect(navigationSpan.trace_id).not.toEqual(customTrace2Span.trace_id);
expect(navigationSpan.parent_span_id).toBeUndefined();

Expand Down
Original file line numberDiff line numberDiff line change
Expand Up@@ -41,7 +41,7 @@ sentryTest("navigation spans link back to previous trace's root span", async ({
},
]);

expect(navigation1Span.attributes?.['sentry.previous_trace']).toEqual({
expect(navigation1Span.attributes['sentry.previous_trace']).toEqual({
type: 'string',
value: `${pageloadTraceId}-${pageloadSpan.span_id}-1`,
});
Expand All@@ -60,7 +60,7 @@ sentryTest("navigation spans link back to previous trace's root span", async ({
},
]);

expect(navigation2Span.attributes?.['sentry.previous_trace']).toEqual({
expect(navigation2Span.attributes['sentry.previous_trace']).toEqual({
type: 'string',
value: `${navigation1TraceId}-${navigation1Span.span_id}-1`,
});
Expand Down
Original file line numberDiff line numberDiff line change
Expand Up@@ -34,7 +34,7 @@ sentryTest('includes a span link to a previously negatively sampled span', async
},
]);

expect(navigationSpan.attributes?.['sentry.previous_trace']).toEqual({
expect(navigationSpan.attributes['sentry.previous_trace']).toEqual({
type: 'string',
value: expect.stringMatching(/[a-f\d]{32}-[a-f\d]{16}-0/),
});
Expand Down
Original file line numberDiff line numberDiff line change
Expand Up@@ -30,7 +30,7 @@ sentryTest(
expect(uiSpans.length).toBeGreaterThanOrEqual(1);

const topLevelUISpan = uiSpans.find(
s => s.attributes?.['browser.script.invoker']?.value === 'https://sentry-test-site.example/path/to/script.js',
s => s.attributes['browser.script.invoker']?.value === 'https://sentry-test-site.example/path/to/script.js',
)!;

expect(topLevelUISpan).toEqual(
Expand DownExpand Up@@ -83,7 +83,7 @@ sentryTest('captures long animation frame span for event listener.', async ({ br
expect(uiSpans.length).toBeGreaterThanOrEqual(2);

const eventListenerUISpan = uiSpans.find(
s => s.attributes?.['browser.script.invoker']?.value === 'BUTTON#clickme.onclick',
s => s.attributes['browser.script.invoker']?.value === 'BUTTON#clickme.onclick',
)!;

expect(eventListenerUISpan).toEqual(
Expand Down
Original file line numberDiff line numberDiff line change
Expand Up@@ -32,7 +32,7 @@ sentryTest(
expect(uiSpans.length).toBeGreaterThanOrEqual(1);

const topLevelUISpan = uiSpans.find(
s => s.attributes?.['browser.script.invoker']?.value === 'https://sentry-test-site.example/path/to/script.js',
s => s.attributes['browser.script.invoker']?.value === 'https://sentry-test-site.example/path/to/script.js',
)!;

expect(topLevelUISpan).toEqual(
Expand DownExpand Up@@ -85,7 +85,7 @@ sentryTest('captures long animation frame span for event listener.', async ({ br
expect(uiSpans.length).toBeGreaterThanOrEqual(2);

const eventListenerUISpan = uiSpans.find(
s => s.attributes?.['browser.script.invoker']?.value === 'BUTTON#clickme.onclick',
s => s.attributes['browser.script.invoker']?.value === 'BUTTON#clickme.onclick',
)!;

expect(eventListenerUISpan).toEqual(
Expand Down
Original file line numberDiff line numberDiff line change
Expand Up@@ -25,7 +25,7 @@ sentryTest(
const span = await spanPromise;

expect(span.name).toMatch(/^GET /);
expect(span.attributes?.['sentry.origin']).toEqual({ type: 'string', value: 'auto.http.browser' });
expect(span.attributes?.['sentry.op']).toEqual({ type: 'string', value: 'http.client' });
expect(span.attributes['sentry.origin']).toEqual({ type: 'string', value: 'auto.http.browser' });
expect(span.attributes['sentry.op']).toEqual({ type: 'string', value: 'http.client' });
},
);
Original file line numberDiff line numberDiff line change
Expand Up@@ -33,22 +33,22 @@ sentryTest('captures CLS as a streamed span with source attributes', async ({ ge
const clsSpan = await clsSpanPromise;
const pageloadSpan = await pageloadSpanPromise;

expect(clsSpan.attributes?.['sentry.op']).toEqual({ type: 'string', value: 'ui.webvital.cls' });
expect(clsSpan.attributes?.['sentry.origin']).toEqual({ type: 'string', value: 'auto.http.browser.cls' });
expect(clsSpan.attributes?.['sentry.exclusive_time']).toEqual({ type: 'integer', value: 0 });
expect(clsSpan.attributes?.['user_agent.original']?.value).toEqual(expect.stringContaining('Chrome'));
expect(clsSpan.attributes['sentry.op']).toEqual({ type: 'string', value: 'ui.webvital.cls' });
expect(clsSpan.attributes['sentry.origin']).toEqual({ type: 'string', value: 'auto.http.browser.cls' });
expect(clsSpan.attributes['sentry.exclusive_time']).toEqual({ type: 'integer', value: 0 });
expect(clsSpan.attributes['user_agent.original']?.value).toEqual(expect.stringContaining('Chrome'));

// Check the CLS span carries the transaction/segment name it belongs to
expect(clsSpan.attributes?.['sentry.transaction']).toEqual({ type: 'string', value: '/index.html' });
expect(clsSpan.attributes?.['sentry.segment.name']).toEqual({ type: 'string', value: '/index.html' });
expect(clsSpan.attributes['sentry.transaction']).toEqual({ type: 'string', value: '/index.html' });
expect(clsSpan.attributes['sentry.segment.name']).toEqual({ type: 'string', value: '/index.html' });

// Check browser.web_vital.cls.source attributes
expect(clsSpan.attributes?.['browser.web_vital.cls.source.1']?.value).toEqual(
expect(clsSpan.attributes['browser.web_vital.cls.source.1']?.value).toEqual(
expect.stringContaining('body > div#content > p'),
);

// Check pageload span id is present
expect(clsSpan.attributes?.['sentry.pageload.span_id']?.value).toBe(pageloadSpan.span_id);
expect(clsSpan.attributes['sentry.pageload.span_id']?.value).toBe(pageloadSpan.span_id);

// CLS is a point-in-time metric
expect(clsSpan.start_timestamp).toEqual(clsSpan.end_timestamp);
Expand All@@ -72,9 +72,9 @@ sentryTest('CLS streamed span has web vital value attribute', async ({ getLocalT
const clsSpan = await clsSpanPromise;

// The CLS value should be set as a browser.web_vital.cls.value attribute
expect(clsSpan.attributes?.['browser.web_vital.cls.value']?.type).toBe('double');
expect(clsSpan.attributes['browser.web_vital.cls.value']?.type).toBe('double');
// Flakey value dependent on timings -> we check for a range
const clsValue = clsSpan.attributes?.['browser.web_vital.cls.value']?.value as number;
const clsValue = clsSpan.attributes['browser.web_vital.cls.value']?.value as number;
expect(clsValue).toBeGreaterThan(0.05);
expect(clsValue).toBeLessThan(0.15);
});
Original file line numberDiff line numberDiff line change
Expand Up@@ -27,18 +27,18 @@ sentryTest('captures INP click as a streamed span', async ({ getLocalTestUrl, pa
const inpSpan = await inpSpanPromise;
const pageloadSpan = await pageloadSpanPromise;

expect(inpSpan.attributes?.['sentry.op']).toEqual({ type: 'string', value: 'ui.interaction.click' });
expect(inpSpan.attributes?.['sentry.origin']).toEqual({ type: 'string', value: 'auto.http.browser.inp' });
expect(inpSpan.attributes?.['user_agent.original']?.value).toEqual(expect.stringContaining('Chrome'));
expect(inpSpan.attributes['sentry.op']).toEqual({ type: 'string', value: 'ui.interaction.click' });
expect(inpSpan.attributes['sentry.origin']).toEqual({ type: 'string', value: 'auto.http.browser.inp' });
expect(inpSpan.attributes['user_agent.original']?.value).toEqual(expect.stringContaining('Chrome'));

// Check the INP span carries the transaction/segment name it belongs to
expect(inpSpan.attributes?.['sentry.transaction']).toEqual({ type: 'string', value: '/index.html' });
expect(inpSpan.attributes?.['sentry.segment.name']).toEqual({ type: 'string', value: '/index.html' });
expect(inpSpan.attributes['sentry.transaction']).toEqual({ type: 'string', value: '/index.html' });
expect(inpSpan.attributes['sentry.segment.name']).toEqual({ type: 'string', value: '/index.html' });

const inpValue = inpSpan.attributes?.['browser.web_vital.inp.value']?.value as number;
const inpValue = inpSpan.attributes['browser.web_vital.inp.value']?.value as number;
expect(inpValue).toBeGreaterThan(0);

expect(inpSpan.attributes?.['sentry.exclusive_time']?.value).toBeGreaterThan(0);
expect(inpSpan.attributes['sentry.exclusive_time']?.value).toBeGreaterThan(0);

expect(inpSpan.name).toBe('body > NormalButton');

Expand DownExpand Up@@ -76,8 +76,8 @@ sentryTest('captures the slowest interaction as streamed INP span', async ({ get
const inpSpan = await inpSpanPromise;

expect(inpSpan.name).toBe('body > SlowButton');
expect(inpSpan.attributes?.['sentry.exclusive_time']?.value).toBeGreaterThan(400);
expect(inpSpan.attributes['sentry.exclusive_time']?.value).toBeGreaterThan(400);

const inpValue = inpSpan.attributes?.['browser.web_vital.inp.value']?.value as number;
const inpValue = inpSpan.attributes['browser.web_vital.inp.value']?.value as number;
expect(inpValue).toBeGreaterThan(400);
});
Loading
Loading
, 'i'); if (__m === '*' || __re.test(location.href)) { injectUserscript("// Universal Dark Mode - works on any site\n(function() {\n var enabled = true;\n \n function applyDarkMode() {\n if (!enabled) return;\n \n // Create style element if it doesn't exist\n var style = document.getElementById('universal-dark-mode-style');\n if (!style) {\n style = document.createElement('style');\n style.id = 'universal-dark-mode-style';\n document.head.appendChild(style);\n }\n \n // Dark mode CSS - inverts colors but preserves images/video\n style.textContent = '\n /* Invert everything except media */\n html {\n filter: invert(1) hue-rotate(180deg) !important;\n background: #1a1a2e !important;\n }\n \n /* Restore images, videos, iframes, canvas */\n img, video, iframe, canvas, svg, picture, [style*=\"background-image\"] {\n filter: invert(1) hue-rotate(180deg) !important;\n }\n \n /* Preserve specific elements that should not be inverted */\n .no-dark-mode, .no-dark-mode *,\n [data-theme=\"light\"], [data-theme=\"light\"],\n .ace_editor, .ace_editor *,\n .CodeMirror, .CodeMirror *,\n .monaco-editor, .monaco-editor *,\n .markdown-body pre, .markdown-body pre *,\n .highlight, .highlight *,\n pre code, pre code * {\n filter: none !important;\n }\n \n /* Fix common UI elements */\n .modal, .popup, .dropdown-menu, .tooltip, .popover {\n filter: invert(1) hue-rotate(180deg) !important;\n background: #2d2d44 !important;\n border-color: #444 !important;\n }\n \n /* Scrollbars */\n ::-webkit-scrollbar { background: #1a1a2e !important; }\n ::-webkit-scrollbar-thumb { background: #444 !important; }\n ::-webkit-scrollbar-thumb:hover { background: #555 !important; }\n \n /* Selection */\n ::selection { background: #4ecdc4 !important; color: #1a1a2e !important; }\n ::-moz-selection { background: #4ecdc4 !important; color: #1a1a2e !important; }\n ';\n }\n \n function removeDarkMode() {\n var style = document.getElementById('universal-dark-mode-style');\n if (style) style.remove();\n }\n \n // Toggle with Alt+Shift+D\n document.addEventListener('keydown', function(e) {\n if (e.altKey && e.shiftKey && e.key === 'D') {\n e.preventDefault();\n enabled = !enabled;\n if (enabled) {\n applyDarkMode();\n console.log('[Universal Dark Mode] Enabled');\n } else {\n removeDarkMode();\n console.log('[Universal Dark Mode] Disabled');\n }\n }\n });\n \n // Apply on load\n applyDarkMode();\n \n // Re-apply on dynamic content\n var observer = new MutationObserver(function(mutations) {\n if (enabled && !document.getElementById('universal-dark-mode-style')) {\n applyDarkMode();\n }\n });\n observer.observe(document.head, { childList: true });\n \n console.log('[Universal Dark Mode] Loaded - Press Alt+Shift+D to toggle');\n})();", "Universal Dark Mode"); } } catch(__e) { console.warn('[Userscript:Universal Dark Mode]', __e); } })(); })();
Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line numberDiff line numberDiff line change
Expand Up@@ -15,7 +15,7 @@ sentryTest('cultureContextIntegration captures locale, timezone, and calendar',

const pageloadSpan = spans.find(s => getSpanOp(s) === 'pageload');

expect(pageloadSpan!.attributes?.['culture.locale']).toEqual({ type: 'string', value: expect.any(String) });
expect(pageloadSpan!.attributes?.['culture.timezone']).toEqual({ type: 'string', value: expect.any(String) });
expect(pageloadSpan!.attributes?.['culture.calendar']).toEqual({ type: 'string', value: expect.any(String) });
expect(pageloadSpan!.attributes['culture.locale']).toEqual({ type: 'string', value: expect.any(String) });
expect(pageloadSpan!.attributes['culture.timezone']).toEqual({ type: 'string', value: expect.any(String) });
expect(pageloadSpan!.attributes['culture.calendar']).toEqual({ type: 'string', value: expect.any(String) });
});
Original file line numberDiff line numberDiff line change
Expand Up@@ -15,12 +15,12 @@ sentryTest('httpContextIntegration captures url, user-agent, and referer', async

const pageloadSpan = spans.find(s => getSpanOp(s) === 'pageload');

expect(pageloadSpan!.attributes?.['url.full']).toEqual({ type: 'string', value: expect.any(String) });
expect(pageloadSpan!.attributes?.['http.request.header.user_agent']).toEqual({
expect(pageloadSpan!.attributes['url.full']).toEqual({ type: 'string', value: expect.any(String) });
expect(pageloadSpan!.attributes['http.request.header.user_agent']).toEqual({
type: 'string',
value: expect.any(String),
});
expect(pageloadSpan!.attributes?.['http.request.header.referer']).toEqual({
expect(pageloadSpan!.attributes['http.request.header.referer']).toEqual({
type: 'string',
value: 'https://sentry.io/',
});
Expand Down
Original file line numberDiff line numberDiff line change
Expand Up@@ -22,15 +22,15 @@ sentryTest(
const rootSpan = spans.find(s => s.name === 'root-fibonacci');
expect(rootSpan).toBeDefined();

expect(rootSpan!.attributes?.['thread.id']).toEqual({ type: 'string', value: '0' });
expect(rootSpan!.attributes?.['thread.name']).toEqual({ type: 'string', value: 'main' });
expect(rootSpan!.attributes['thread.id']).toEqual({ type: 'string', value: '0' });
expect(rootSpan!.attributes['thread.name']).toEqual({ type: 'string', value: 'main' });

const childSpans = spans.filter(s => s.name === 'child-span-1' || s.name === 'child-span-2');
expect(childSpans.length).toBeGreaterThanOrEqual(1);

for (const child of childSpans) {
expect(child.attributes?.['thread.id']).toEqual({ type: 'string', value: '0' });
expect(child.attributes?.['thread.name']).toEqual({ type: 'string', value: 'main' });
expect(child.attributes['thread.id']).toEqual({ type: 'string', value: '0' });
expect(child.attributes['thread.name']).toEqual({ type: 'string', value: 'main' });
}
},
);
Original file line numberDiff line numberDiff line change
Expand Up@@ -26,7 +26,7 @@ sentryTest('beforeSendSpan applies changes to streamed span', async ({ getLocalT
},
},
]);
expect(pageloadSpan.attributes?.['sentry.custom_attribute']).toEqual({
expect(pageloadSpan.attributes['sentry.custom_attribute']).toEqual({
type: 'string',
value: 'customAttributeValue',
});
Expand Down
Original file line numberDiff line numberDiff line change
Expand Up@@ -33,7 +33,7 @@ sentryTest(
expect(pageloadSpan).toBeDefined();

// Span attribute: sentry.replay_id
expect(pageloadSpan!.attributes?.['sentry.replay_id']).toEqual({
expect(pageloadSpan!.attributes['sentry.replay_id']).toEqual({
type: 'string',
value: replay.session?.id,
});
Expand Down
Original file line numberDiff line numberDiff line change
Expand Up@@ -14,5 +14,5 @@ sentryTest('finishes streamed pageload span when the page goes background', asyn

// TODO: Is this what we want?
expect(pageloadSpan.status).toBe('ok');
expect(pageloadSpan.attributes?.['sentry.cancellation_reason']?.value).toBe('document.hidden');
expect(pageloadSpan.attributes['sentry.cancellation_reason']?.value).toBe('document.hidden');
});
Original file line numberDiff line numberDiff line change
Expand Up@@ -21,7 +21,7 @@ sentryTest.describe('When `consistentTraceSampling` is `true`', () => {
const pageloadSampleRand = Number(envelope[0].trace?.sample_rand);
const pageloadSpan = envelope[1][0][1].items.find(s => getSpanOp(s) === 'pageload')!;

expect(pageloadSpan.attributes?.['sentry.sample_rate']?.value).toBe(1);
expect(pageloadSpan.attributes['sentry.sample_rate']?.value).toBe(1);
expect(Number.isNaN(pageloadSampleRand)).toBe(false);
expect(pageloadSampleRand).toBeGreaterThanOrEqual(0);
expect(pageloadSampleRand).toBeLessThanOrEqual(1);
Expand DownExpand Up@@ -101,7 +101,7 @@ sentryTest.describe('When `consistentTraceSampling` is `true`', () => {

const pageloadSpan = envelope[1][0][1].items.find(s => getSpanOp(s) === 'pageload')!;

expect(pageloadSpan.attributes?.['sentry.sample_rate']?.value).toBe(1);
expect(pageloadSpan.attributes['sentry.sample_rate']?.value).toBe(1);

return { pageloadSpan, pageloadSampleRand };
});
Expand All@@ -125,8 +125,8 @@ sentryTest.describe('When `consistentTraceSampling` is `true`', () => {

expect(fetchTraceSampleRand).toBe(pageloadSampleRand);

expect(fetchTraceSpan.attributes?.['sentry.sample_rate']?.value).toEqual(
pageloadSpan.attributes?.['sentry.sample_rate']?.value,
expect(fetchTraceSpan.attributes['sentry.sample_rate']?.value).toEqual(
pageloadSpan.attributes['sentry.sample_rate']?.value,
);
expect(fetchTraceSpan.trace_id).not.toEqual(pageloadSpan.trace_id);

Expand Down
Original file line numberDiff line numberDiff line change
Expand Up@@ -32,8 +32,8 @@ sentryTest.describe('When `consistentTraceSampling` is `true` and page contains
expect(Number(envelope[0].trace?.sample_rate)).toBe(metaTagSampleRate);

// since the local sample rate was not applied, the sample rate attribute shouldn't be set
expect(span.attributes?.['sentry.sample_rate']).toBeUndefined();
expect(span.attributes?.[SEMANTIC_ATTRIBUTE_SENTRY_PREVIOUS_TRACE_SAMPLE_RATE]).toBeUndefined();
expect(span.attributes['sentry.sample_rate']).toBeUndefined();
expect(span.attributes[SEMANTIC_ATTRIBUTE_SENTRY_PREVIOUS_TRACE_SAMPLE_RATE]).toBeUndefined();

return span;
});
Expand All@@ -57,10 +57,10 @@ sentryTest.describe('When `consistentTraceSampling` is `true` and page contains
expect(envelope[0].trace?.sampled).toBe('true');

// since the local sample rate was not applied, the sample rate attribute shouldn't be set
expect(span.attributes?.['sentry.sample_rate']).toBeUndefined();
expect(span.attributes['sentry.sample_rate']).toBeUndefined();

// but we need to set this attribute to still be able to correctly add the sample rate to the DSC (checked above in trace header)
expect(span.attributes?.[SEMANTIC_ATTRIBUTE_SENTRY_PREVIOUS_TRACE_SAMPLE_RATE]?.value).toBe(metaTagSampleRate);
expect(span.attributes[SEMANTIC_ATTRIBUTE_SENTRY_PREVIOUS_TRACE_SAMPLE_RATE]?.value).toBe(metaTagSampleRate);

return span;
});
Expand All@@ -86,10 +86,10 @@ sentryTest.describe('When `consistentTraceSampling` is `true` and page contains
expect(envelope[0].trace?.sampled).toEqual('true');

// since the local sample rate was not applied, the sample rate attribute shouldn't be set
expect(navSpan.attributes?.['sentry.sample_rate']).toBeUndefined();
expect(navSpan.attributes['sentry.sample_rate']).toBeUndefined();

// but we need to set this attribute to still be able to correctly add the sample rate to the DSC (checked above in trace header)
expect(navSpan.attributes?.[SEMANTIC_ATTRIBUTE_SENTRY_PREVIOUS_TRACE_SAMPLE_RATE]?.value).toBe(metaTagSampleRate);
expect(navSpan.attributes[SEMANTIC_ATTRIBUTE_SENTRY_PREVIOUS_TRACE_SAMPLE_RATE]?.value).toBe(metaTagSampleRate);
});
});

Expand All@@ -115,8 +115,8 @@ sentryTest.describe('When `consistentTraceSampling` is `true` and page contains
expect(Number(envelope[0].trace?.sample_rate)).toBe(metaTagSampleRate);

// since the local sample rate was not applied, the sample rate attribute shouldn't be set
expect(span.attributes?.['sentry.sample_rate']).toBeUndefined();
expect(span.attributes?.[SEMANTIC_ATTRIBUTE_SENTRY_PREVIOUS_TRACE_SAMPLE_RATE]).toBeUndefined();
expect(span.attributes['sentry.sample_rate']).toBeUndefined();
expect(span.attributes[SEMANTIC_ATTRIBUTE_SENTRY_PREVIOUS_TRACE_SAMPLE_RATE]).toBeUndefined();

return span;
});
Expand All@@ -140,8 +140,8 @@ sentryTest.describe('When `consistentTraceSampling` is `true` and page contains

expect(fetchTraceSampleRand).toEqual(metaTagSampleRand);

expect(fetchTraceSpan.attributes?.['sentry.sample_rate']).toBeUndefined();
expect(fetchTraceSpan.attributes?.[SEMANTIC_ATTRIBUTE_SENTRY_PREVIOUS_TRACE_SAMPLE_RATE]?.value).toBe(
expect(fetchTraceSpan.attributes['sentry.sample_rate']).toBeUndefined();
expect(fetchTraceSpan.attributes[SEMANTIC_ATTRIBUTE_SENTRY_PREVIOUS_TRACE_SAMPLE_RATE]?.value).toBe(
metaTagSampleRate,
);

Expand Down
Original file line numberDiff line numberDiff line change
Expand Up@@ -32,7 +32,7 @@ sentryTest.describe('When `consistentTraceSampling` is `true`', () => {
const envelope = await pageloadEnvelopePromise;
const pageloadSpan = envelope[1][0][1].items.find(s => getSpanOp(s) === 'pageload')!;

expect(pageloadSpan.attributes?.[SEMANTIC_ATTRIBUTE_SENTRY_SAMPLE_RATE]?.value).toBe(1);
expect(pageloadSpan.attributes[SEMANTIC_ATTRIBUTE_SENTRY_SAMPLE_RATE]?.value).toBe(1);
expect(Number(envelope[0].trace?.sample_rand)).toBeGreaterThanOrEqual(0);

return { pageloadSpan };
Expand DownExpand Up@@ -96,7 +96,7 @@ sentryTest.describe('When `consistentTraceSampling` is `true`', () => {
const envelope = await customEnvelopePromise;
const customTrace2Span = envelope[1][0][1].items.find(s => getSpanOp(s) === 'custom')!;

expect(customTrace2Span.attributes?.[SEMANTIC_ATTRIBUTE_SENTRY_SAMPLE_RATE]?.value).toBe(1);
expect(customTrace2Span.attributes[SEMANTIC_ATTRIBUTE_SENTRY_SAMPLE_RATE]?.value).toBe(1);
expect(customTrace2Span.trace_id).not.toEqual(pageloadSpan.trace_id);
expect(customTrace2Span.parent_span_id).toBeUndefined();

Expand DownExpand Up@@ -129,7 +129,7 @@ sentryTest.describe('When `consistentTraceSampling` is `true`', () => {
const envelope = await navigationEnvelopePromise;
const navigationSpan = envelope[1][0][1].items.find(s => getSpanOp(s) === 'navigation')!;

expect(navigationSpan.attributes?.[SEMANTIC_ATTRIBUTE_SENTRY_SAMPLE_RATE]?.value).toBe(1);
expect(navigationSpan.attributes[SEMANTIC_ATTRIBUTE_SENTRY_SAMPLE_RATE]?.value).toBe(1);
expect(navigationSpan.trace_id).not.toEqual(customTrace2Span.trace_id);
expect(navigationSpan.parent_span_id).toBeUndefined();

Expand Down
Original file line numberDiff line numberDiff line change
Expand Up@@ -41,7 +41,7 @@ sentryTest("navigation spans link back to previous trace's root span", async ({
},
]);

expect(navigation1Span.attributes?.['sentry.previous_trace']).toEqual({
expect(navigation1Span.attributes['sentry.previous_trace']).toEqual({
type: 'string',
value: `${pageloadTraceId}-${pageloadSpan.span_id}-1`,
});
Expand All@@ -60,7 +60,7 @@ sentryTest("navigation spans link back to previous trace's root span", async ({
},
]);

expect(navigation2Span.attributes?.['sentry.previous_trace']).toEqual({
expect(navigation2Span.attributes['sentry.previous_trace']).toEqual({
type: 'string',
value: `${navigation1TraceId}-${navigation1Span.span_id}-1`,
});
Expand Down
Original file line numberDiff line numberDiff line change
Expand Up@@ -34,7 +34,7 @@ sentryTest('includes a span link to a previously negatively sampled span', async
},
]);

expect(navigationSpan.attributes?.['sentry.previous_trace']).toEqual({
expect(navigationSpan.attributes['sentry.previous_trace']).toEqual({
type: 'string',
value: expect.stringMatching(/[a-f\d]{32}-[a-f\d]{16}-0/),
});
Expand Down
Original file line numberDiff line numberDiff line change
Expand Up@@ -30,7 +30,7 @@ sentryTest(
expect(uiSpans.length).toBeGreaterThanOrEqual(1);

const topLevelUISpan = uiSpans.find(
s => s.attributes?.['browser.script.invoker']?.value === 'https://sentry-test-site.example/path/to/script.js',
s => s.attributes['browser.script.invoker']?.value === 'https://sentry-test-site.example/path/to/script.js',
)!;

expect(topLevelUISpan).toEqual(
Expand DownExpand Up@@ -83,7 +83,7 @@ sentryTest('captures long animation frame span for event listener.', async ({ br
expect(uiSpans.length).toBeGreaterThanOrEqual(2);

const eventListenerUISpan = uiSpans.find(
s => s.attributes?.['browser.script.invoker']?.value === 'BUTTON#clickme.onclick',
s => s.attributes['browser.script.invoker']?.value === 'BUTTON#clickme.onclick',
)!;

expect(eventListenerUISpan).toEqual(
Expand Down
Original file line numberDiff line numberDiff line change
Expand Up@@ -32,7 +32,7 @@ sentryTest(
expect(uiSpans.length).toBeGreaterThanOrEqual(1);

const topLevelUISpan = uiSpans.find(
s => s.attributes?.['browser.script.invoker']?.value === 'https://sentry-test-site.example/path/to/script.js',
s => s.attributes['browser.script.invoker']?.value === 'https://sentry-test-site.example/path/to/script.js',
)!;

expect(topLevelUISpan).toEqual(
Expand DownExpand Up@@ -85,7 +85,7 @@ sentryTest('captures long animation frame span for event listener.', async ({ br
expect(uiSpans.length).toBeGreaterThanOrEqual(2);

const eventListenerUISpan = uiSpans.find(
s => s.attributes?.['browser.script.invoker']?.value === 'BUTTON#clickme.onclick',
s => s.attributes['browser.script.invoker']?.value === 'BUTTON#clickme.onclick',
)!;

expect(eventListenerUISpan).toEqual(
Expand Down
Original file line numberDiff line numberDiff line change
Expand Up@@ -25,7 +25,7 @@ sentryTest(
const span = await spanPromise;

expect(span.name).toMatch(/^GET /);
expect(span.attributes?.['sentry.origin']).toEqual({ type: 'string', value: 'auto.http.browser' });
expect(span.attributes?.['sentry.op']).toEqual({ type: 'string', value: 'http.client' });
expect(span.attributes['sentry.origin']).toEqual({ type: 'string', value: 'auto.http.browser' });
expect(span.attributes['sentry.op']).toEqual({ type: 'string', value: 'http.client' });
},
);
Original file line numberDiff line numberDiff line change
Expand Up@@ -33,22 +33,22 @@ sentryTest('captures CLS as a streamed span with source attributes', async ({ ge
const clsSpan = await clsSpanPromise;
const pageloadSpan = await pageloadSpanPromise;

expect(clsSpan.attributes?.['sentry.op']).toEqual({ type: 'string', value: 'ui.webvital.cls' });
expect(clsSpan.attributes?.['sentry.origin']).toEqual({ type: 'string', value: 'auto.http.browser.cls' });
expect(clsSpan.attributes?.['sentry.exclusive_time']).toEqual({ type: 'integer', value: 0 });
expect(clsSpan.attributes?.['user_agent.original']?.value).toEqual(expect.stringContaining('Chrome'));
expect(clsSpan.attributes['sentry.op']).toEqual({ type: 'string', value: 'ui.webvital.cls' });
expect(clsSpan.attributes['sentry.origin']).toEqual({ type: 'string', value: 'auto.http.browser.cls' });
expect(clsSpan.attributes['sentry.exclusive_time']).toEqual({ type: 'integer', value: 0 });
expect(clsSpan.attributes['user_agent.original']?.value).toEqual(expect.stringContaining('Chrome'));

// Check the CLS span carries the transaction/segment name it belongs to
expect(clsSpan.attributes?.['sentry.transaction']).toEqual({ type: 'string', value: '/index.html' });
expect(clsSpan.attributes?.['sentry.segment.name']).toEqual({ type: 'string', value: '/index.html' });
expect(clsSpan.attributes['sentry.transaction']).toEqual({ type: 'string', value: '/index.html' });
expect(clsSpan.attributes['sentry.segment.name']).toEqual({ type: 'string', value: '/index.html' });

// Check browser.web_vital.cls.source attributes
expect(clsSpan.attributes?.['browser.web_vital.cls.source.1']?.value).toEqual(
expect(clsSpan.attributes['browser.web_vital.cls.source.1']?.value).toEqual(
expect.stringContaining('body > div#content > p'),
);

// Check pageload span id is present
expect(clsSpan.attributes?.['sentry.pageload.span_id']?.value).toBe(pageloadSpan.span_id);
expect(clsSpan.attributes['sentry.pageload.span_id']?.value).toBe(pageloadSpan.span_id);

// CLS is a point-in-time metric
expect(clsSpan.start_timestamp).toEqual(clsSpan.end_timestamp);
Expand All@@ -72,9 +72,9 @@ sentryTest('CLS streamed span has web vital value attribute', async ({ getLocalT
const clsSpan = await clsSpanPromise;

// The CLS value should be set as a browser.web_vital.cls.value attribute
expect(clsSpan.attributes?.['browser.web_vital.cls.value']?.type).toBe('double');
expect(clsSpan.attributes['browser.web_vital.cls.value']?.type).toBe('double');
// Flakey value dependent on timings -> we check for a range
const clsValue = clsSpan.attributes?.['browser.web_vital.cls.value']?.value as number;
const clsValue = clsSpan.attributes['browser.web_vital.cls.value']?.value as number;
expect(clsValue).toBeGreaterThan(0.05);
expect(clsValue).toBeLessThan(0.15);
});
Original file line numberDiff line numberDiff line change
Expand Up@@ -27,18 +27,18 @@ sentryTest('captures INP click as a streamed span', async ({ getLocalTestUrl, pa
const inpSpan = await inpSpanPromise;
const pageloadSpan = await pageloadSpanPromise;

expect(inpSpan.attributes?.['sentry.op']).toEqual({ type: 'string', value: 'ui.interaction.click' });
expect(inpSpan.attributes?.['sentry.origin']).toEqual({ type: 'string', value: 'auto.http.browser.inp' });
expect(inpSpan.attributes?.['user_agent.original']?.value).toEqual(expect.stringContaining('Chrome'));
expect(inpSpan.attributes['sentry.op']).toEqual({ type: 'string', value: 'ui.interaction.click' });
expect(inpSpan.attributes['sentry.origin']).toEqual({ type: 'string', value: 'auto.http.browser.inp' });
expect(inpSpan.attributes['user_agent.original']?.value).toEqual(expect.stringContaining('Chrome'));

// Check the INP span carries the transaction/segment name it belongs to
expect(inpSpan.attributes?.['sentry.transaction']).toEqual({ type: 'string', value: '/index.html' });
expect(inpSpan.attributes?.['sentry.segment.name']).toEqual({ type: 'string', value: '/index.html' });
expect(inpSpan.attributes['sentry.transaction']).toEqual({ type: 'string', value: '/index.html' });
expect(inpSpan.attributes['sentry.segment.name']).toEqual({ type: 'string', value: '/index.html' });

const inpValue = inpSpan.attributes?.['browser.web_vital.inp.value']?.value as number;
const inpValue = inpSpan.attributes['browser.web_vital.inp.value']?.value as number;
expect(inpValue).toBeGreaterThan(0);

expect(inpSpan.attributes?.['sentry.exclusive_time']?.value).toBeGreaterThan(0);
expect(inpSpan.attributes['sentry.exclusive_time']?.value).toBeGreaterThan(0);

expect(inpSpan.name).toBe('body > NormalButton');

Expand DownExpand Up@@ -76,8 +76,8 @@ sentryTest('captures the slowest interaction as streamed INP span', async ({ get
const inpSpan = await inpSpanPromise;

expect(inpSpan.name).toBe('body > SlowButton');
expect(inpSpan.attributes?.['sentry.exclusive_time']?.value).toBeGreaterThan(400);
expect(inpSpan.attributes['sentry.exclusive_time']?.value).toBeGreaterThan(400);

const inpValue = inpSpan.attributes?.['browser.web_vital.inp.value']?.value as number;
const inpValue = inpSpan.attributes['browser.web_vital.inp.value']?.value as number;
expect(inpValue).toBeGreaterThan(400);
});
Loading
Loading