-
-
Notifications
You must be signed in to change notification settings - Fork 1.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #10617 from getsentry/fn/backport-to-v7
Backport changes to v7
- Loading branch information
Showing
37 changed files
with
862 additions
and
40 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
56 changes: 56 additions & 0 deletions
56
dev-packages/node-integration-tests/suites/tracing/metric-summaries/scenario.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,56 @@ | ||
const { loggingTransport } = require('@sentry-internal/node-integration-tests'); | ||
const Sentry = require('@sentry/node'); | ||
|
||
Sentry.init({ | ||
dsn: 'https://public@dsn.ingest.sentry.io/1337', | ||
release: '1.0', | ||
tracesSampleRate: 1.0, | ||
transport: loggingTransport, | ||
_experiments: { | ||
metricsAggregator: true, | ||
}, | ||
}); | ||
|
||
// Stop the process from exiting before the transaction is sent | ||
setInterval(() => {}, 1000); | ||
|
||
Sentry.startSpan( | ||
{ | ||
name: 'Test Transaction', | ||
op: 'transaction', | ||
}, | ||
() => { | ||
Sentry.metrics.increment('root-counter', 1, { | ||
tags: { | ||
email: 'jon.doe@example.com', | ||
}, | ||
}); | ||
Sentry.metrics.increment('root-counter', 1, { | ||
tags: { | ||
email: 'jane.doe@example.com', | ||
}, | ||
}); | ||
|
||
Sentry.startSpan( | ||
{ | ||
name: 'Some other span', | ||
op: 'transaction', | ||
}, | ||
() => { | ||
Sentry.metrics.increment('root-counter'); | ||
Sentry.metrics.increment('root-counter'); | ||
Sentry.metrics.increment('root-counter', 2); | ||
|
||
Sentry.metrics.set('root-set', 'some-value'); | ||
Sentry.metrics.set('root-set', 'another-value'); | ||
Sentry.metrics.set('root-set', 'another-value'); | ||
|
||
Sentry.metrics.gauge('root-gauge', 42); | ||
Sentry.metrics.gauge('root-gauge', 20); | ||
|
||
Sentry.metrics.distribution('root-distribution', 42); | ||
Sentry.metrics.distribution('root-distribution', 20); | ||
}, | ||
); | ||
}, | ||
); |
91 changes: 91 additions & 0 deletions
91
dev-packages/node-integration-tests/suites/tracing/metric-summaries/test.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,91 @@ | ||
import { createRunner } from '../../../utils/runner'; | ||
|
||
const EXPECTED_TRANSACTION = { | ||
transaction: 'Test Transaction', | ||
_metrics_summary: { | ||
'c:root-counter@none': [ | ||
{ | ||
min: 1, | ||
max: 1, | ||
count: 1, | ||
sum: 1, | ||
tags: { | ||
release: '1.0', | ||
transaction: 'Test Transaction', | ||
email: 'jon.doe@example.com', | ||
}, | ||
}, | ||
{ | ||
min: 1, | ||
max: 1, | ||
count: 1, | ||
sum: 1, | ||
tags: { | ||
release: '1.0', | ||
transaction: 'Test Transaction', | ||
email: 'jane.doe@example.com', | ||
}, | ||
}, | ||
], | ||
}, | ||
spans: expect.arrayContaining([ | ||
expect.objectContaining({ | ||
description: 'Some other span', | ||
op: 'transaction', | ||
_metrics_summary: { | ||
'c:root-counter@none': [ | ||
{ | ||
min: 1, | ||
max: 2, | ||
count: 3, | ||
sum: 4, | ||
tags: { | ||
release: '1.0', | ||
transaction: 'Test Transaction', | ||
}, | ||
}, | ||
], | ||
's:root-set@none': [ | ||
{ | ||
min: 0, | ||
max: 1, | ||
count: 3, | ||
sum: 2, | ||
tags: { | ||
release: '1.0', | ||
transaction: 'Test Transaction', | ||
}, | ||
}, | ||
], | ||
'g:root-gauge@none': [ | ||
{ | ||
min: 20, | ||
max: 42, | ||
count: 2, | ||
sum: 62, | ||
tags: { | ||
release: '1.0', | ||
transaction: 'Test Transaction', | ||
}, | ||
}, | ||
], | ||
'd:root-distribution@none': [ | ||
{ | ||
min: 20, | ||
max: 42, | ||
count: 2, | ||
sum: 62, | ||
tags: { | ||
release: '1.0', | ||
transaction: 'Test Transaction', | ||
}, | ||
}, | ||
], | ||
}, | ||
}), | ||
]), | ||
}; | ||
|
||
test('Should add metric summaries to spans', done => { | ||
createRunner(__dirname, 'scenario.js').expect({ transaction: EXPECTED_TRANSACTION }).start(done); | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.