Skip to content

ref(tracing): Use previous source when logging name changes #5733

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 10 commits into from
Sep 15, 2022
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
8 changes: 1 addition & 7 deletions packages/hub/src/exports.ts
Original file line number Diff line number Diff line change
Expand Up @@ -181,11 +181,5 @@ export function startTransaction(
context: TransactionContext,
customSamplingContext?: CustomSamplingContext,
): ReturnType<Hub['startTransaction']> {
return getCurrentHub().startTransaction(
{
metadata: { source: 'custom' },
...context,
},
customSamplingContext,
);
return getCurrentHub().startTransaction({ ...context }, customSamplingContext);
}
30 changes: 0 additions & 30 deletions packages/hub/test/exports.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@ import {
setTag,
setTags,
setUser,
startTransaction,
withScope,
} from '../src/exports';

Expand Down Expand Up @@ -186,35 +185,6 @@ describe('Top Level API', () => {
});
});

describe('startTransaction', () => {
beforeEach(() => {
global.__SENTRY__ = {
hub: undefined,
extensions: {
startTransaction: (context: any) => ({
name: context.name,
// Spread rather than assign in case it's undefined
metadata: { ...context.metadata },
}),
},
};
});

it("sets source to `'custom'` if no source provided", () => {
const transaction = startTransaction({ name: 'dogpark' });

expect(transaction.name).toEqual('dogpark');
expect(transaction.metadata.source).toEqual('custom');
});

it('uses given `source` value', () => {
const transaction = startTransaction({ name: 'dogpark', metadata: { source: 'route' } });

expect(transaction.name).toEqual('dogpark');
expect(transaction.metadata.source).toEqual('route');
});
});

test('Clear Scope', () => {
const client: any = new TestClient({});
getCurrentHub().withScope(() => {
Expand Down

This file was deleted.

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ test('should set a correct transaction name for routes specified in RegEx', asyn
changes: [
{
propagations: 0,
source: 'route',
source: 'url',
timestamp: expect.any(Number),
},
],
Expand Down Expand Up @@ -77,7 +77,7 @@ test.each([['array1'], ['array5']])(
changes: [
{
propagations: 0,
source: 'route',
source: 'url',
timestamp: expect.any(Number),
},
],
Expand Down Expand Up @@ -121,7 +121,7 @@ test.each([
changes: [
{
propagations: 0,
source: 'route',
source: 'url',
timestamp: expect.any(Number),
},
],
Expand Down
20 changes: 17 additions & 3 deletions packages/node/test/integrations/http.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ describe('tracing', () => {
const baggageHeader = request.getHeader('baggage') as string;

expect(baggageHeader).toEqual(
'sentry-environment=production,sentry-release=1.0.0,' +
'sentry-environment=production,sentry-release=1.0.0,sentry-transaction=dogpark,' +
'sentry-user_segment=segmentA,sentry-public_key=dogsarebadatkeepingsecrets,' +
'sentry-trace_id=12312012123120121231201212312012,sentry-sample_rate=1',
);
Expand All @@ -135,14 +135,14 @@ describe('tracing', () => {

expect(baggageHeader).toEqual([
'dog=great',
'sentry-environment=production,sentry-release=1.0.0,sentry-user_segment=segmentA,sentry-public_key=dogsarebadatkeepingsecrets,sentry-trace_id=12312012123120121231201212312012,sentry-sample_rate=1',
'sentry-environment=production,sentry-release=1.0.0,sentry-transaction=dogpark,sentry-user_segment=segmentA,sentry-public_key=dogsarebadatkeepingsecrets,sentry-trace_id=12312012123120121231201212312012,sentry-sample_rate=1',
]);
});

it('adds the transaction name to the the baggage header if a valid transaction source is set', async () => {
nock('http://dogs.are.great').get('/').reply(200);

createTransactionOnScope({}, { metadata: { source: 'custom' } });
createTransactionOnScope({}, { metadata: { source: 'route' } });

const request = http.get({ host: 'http://dogs.are.great/', headers: { baggage: 'dog=great' } });
const baggageHeader = request.getHeader('baggage') as string;
Expand All @@ -153,6 +153,20 @@ describe('tracing', () => {
]);
});

it('does not add the transaction name to the the baggage header if url transaction source is set', async () => {
nock('http://dogs.are.great').get('/').reply(200);

createTransactionOnScope({}, { metadata: { source: 'url' } });

const request = http.get({ host: 'http://dogs.are.great/', headers: { baggage: 'dog=great' } });
const baggageHeader = request.getHeader('baggage') as string;

expect(baggageHeader).toEqual([
'dog=great',
'sentry-environment=production,sentry-release=1.0.0,sentry-user_segment=segmentA,sentry-public_key=dogsarebadatkeepingsecrets,sentry-trace_id=12312012123120121231201212312012,sentry-sample_rate=1',
]);
});

it("doesn't attach the sentry-trace header to outgoing sentry requests", () => {
nock('http://squirrelchasers.ingest.sentry.io').get('/api/12312012/store/').reply(200);

Expand Down
4 changes: 3 additions & 1 deletion packages/tracing/src/transaction.ts
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,7 @@ export class Transaction extends SpanClass implements TransactionInterface {
this._name = transactionContext.name || '';

this.metadata = {
source: 'custom',
...transactionContext.metadata,
spanMetadata: {},
changes: [],
Expand Down Expand Up @@ -82,7 +83,8 @@ export class Transaction extends SpanClass implements TransactionInterface {
// parameterized by virtue of having no parameters in its path
if (name !== this.name || source !== this.metadata.source) {
this.metadata.changes.push({
source,
// log previous source
source: this.metadata.source,
timestamp: timestampInSeconds(),
propagations: this.metadata.propagations,
});
Expand Down
4 changes: 2 additions & 2 deletions packages/tracing/test/browser/browsertracing.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -228,7 +228,7 @@ describe('BrowserTracing', () => {
expect(mockBeforeNavigation).toHaveBeenCalledTimes(1);
});

it("doesn't set transaction name source if name is not changed", () => {
it('sets transaction name source to default `custom` if name is not changed', () => {
const mockBeforeNavigation = jest.fn(ctx => ({
...ctx,
}));
Expand All @@ -239,7 +239,7 @@ describe('BrowserTracing', () => {
const transaction = getActiveTransaction(hub) as IdleTransaction;
expect(transaction).toBeDefined();
expect(transaction.name).toBe('a/path');
expect(transaction.metadata.source).toBeUndefined();
expect(transaction.metadata.source).toBe('custom');

expect(mockBeforeNavigation).toHaveBeenCalledTimes(1);
});
Expand Down
28 changes: 3 additions & 25 deletions packages/tracing/test/span.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -440,26 +440,23 @@ describe('Span', () => {
environment: 'production',
sample_rate: '0.56',
trace_id: expect.any(String),
transaction: 'tx',
});
});

describe('Including transaction name in DSC', () => {
test.each([
['is not included if transaction source is not set', undefined],
['is not included if transaction source is url', 'url'],
])('%s', (_: string, source) => {
test('is not included if transaction source is url', () => {
const transaction = new Transaction(
{
name: 'tx',
metadata: {
...(source && { source: source as TransactionSource }),
source: 'url',
},
},
hub,
);

const dsc = transaction.getDynamicSamplingContext()!;

expect(dsc.transaction).toBeUndefined();
});

Expand All @@ -485,25 +482,6 @@ describe('Span', () => {
});

describe('Transaction source', () => {
test('is not included by default', () => {
const spy = jest.spyOn(hub as any, 'captureEvent') as any;
const transaction = hub.startTransaction({ name: 'test', sampled: true });
expect(spy).toHaveBeenCalledTimes(0);

transaction.finish();

expect(spy).toHaveBeenCalledTimes(1);
expect(spy).toHaveBeenLastCalledWith(
expect.not.objectContaining({
transaction_info: {
source: expect.any(String),
changes: [],
propagations: 0,
},
}),
);
});

test('is included when transaction metadata is set', () => {
const spy = jest.spyOn(hub as any, 'captureEvent') as any;
const transaction = hub.startTransaction({ name: 'test', sampled: true });
Expand Down
26 changes: 13 additions & 13 deletions packages/tracing/test/transaction.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,11 @@ describe('`Transaction` class', () => {
expect(transaction.metadata.source).toEqual('route');
});

it("doesn't set source in constructor if not provided", () => {
it("sets source to be `'custom'` in constructor if not provided", () => {
const transaction = new Transaction({ name: 'dogpark' });

expect(transaction.name).toEqual('dogpark');
expect(transaction.metadata.source).toBeUndefined();
expect(transaction.metadata.source).toBe('custom');
});

it("sets source to `'custom'` when assigning to `name` property", () => {
Expand All @@ -25,14 +25,14 @@ describe('`Transaction` class', () => {
});

it('updates transaction name changes with correct variables needed', () => {
const transaction = new Transaction({ name: 'dogpark' });
const transaction = new Transaction({ name: 'dogpark', metadata: { source: 'url' } });
expect(transaction.metadata.changes).toEqual([]);

transaction.name = 'ballpit';

expect(transaction.metadata.changes).toEqual([
{
source: 'custom',
source: 'url',
timestamp: expect.any(Number),
propagations: 0,
},
Expand All @@ -42,7 +42,7 @@ describe('`Transaction` class', () => {

expect(transaction.metadata.changes).toEqual([
{
source: 'custom',
source: 'url',
timestamp: expect.any(Number),
propagations: 0,
},
Expand All @@ -52,7 +52,7 @@ describe('`Transaction` class', () => {

expect(transaction.metadata.changes).toEqual([
{
source: 'custom',
source: 'url',
timestamp: expect.any(Number),
propagations: 0,
},
Expand All @@ -68,7 +68,7 @@ describe('`Transaction` class', () => {

expect(transaction.metadata.changes).toEqual([
{
source: 'custom',
source: 'url',
timestamp: expect.any(Number),
propagations: 0,
},
Expand All @@ -78,7 +78,7 @@ describe('`Transaction` class', () => {
propagations: 3,
},
{
source: 'route',
source: 'custom',
timestamp: expect.any(Number),
propagations: 3,
},
Expand Down Expand Up @@ -140,14 +140,14 @@ describe('`Transaction` class', () => {
});

it('updates transaction name changes with correct variables needed', () => {
const transaction = new Transaction({ name: 'dogpark' });
const transaction = new Transaction({ name: 'dogpark', metadata: { source: 'url' } });
expect(transaction.metadata.changes).toEqual([]);

transaction.name = 'ballpit';

expect(transaction.metadata.changes).toEqual([
{
source: 'custom',
source: 'url',
timestamp: expect.any(Number),
propagations: 0,
},
Expand All @@ -157,7 +157,7 @@ describe('`Transaction` class', () => {

expect(transaction.metadata.changes).toEqual([
{
source: 'custom',
source: 'url',
timestamp: expect.any(Number),
propagations: 0,
},
Expand All @@ -167,12 +167,12 @@ describe('`Transaction` class', () => {

expect(transaction.metadata.changes).toEqual([
{
source: 'custom',
source: 'url',
timestamp: expect.any(Number),
propagations: 0,
},
{
source: 'task',
source: 'custom',
timestamp: expect.any(Number),
propagations: 3,
},
Expand Down
Loading