-
-
Notifications
You must be signed in to change notification settings - Fork 355
Metrics for React Native SDK #5402
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
Changes from all commits
Commits
Show all changes
8 commits
Select commit
Hold shift + click to select a range
4b1a0c9
Metrics for React Native SDK
alwx 0d4ce7b
Fixes
alwx 6120117
Fixes, changelog entry
alwx a145469
Metrics changelog
alwx 5151579
Smallish fix
alwx f1820fb
Lint fix
alwx 073718a
Fix
alwx 06fa7fa
Metrics for sample apps
alwx File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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 hidden or 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 |
|---|---|---|
|
|
@@ -46,6 +46,7 @@ export { | |
| setCurrentClient, | ||
| addEventProcessor, | ||
| lastEventId, | ||
| metrics, | ||
| } from '@sentry/core'; | ||
|
|
||
| export { | ||
|
|
||
This file contains hidden or 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 hidden or 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,180 @@ | ||
| import { getClient, metrics, setCurrentClient } from '@sentry/core'; | ||
| import { ReactNativeClient } from '../src/js'; | ||
| import { getDefaultTestClientOptions } from './mocks/client'; | ||
| import { NATIVE } from './mockWrapper'; | ||
|
|
||
| jest.mock('../src/js/wrapper', () => jest.requireActual('./mockWrapper')); | ||
|
|
||
| const EXAMPLE_DSN = 'https://[email protected]/148053'; | ||
|
|
||
| describe('Metrics', () => { | ||
| beforeEach(() => { | ||
| jest.clearAllMocks(); | ||
| jest.useFakeTimers(); | ||
| (NATIVE.isNativeAvailable as jest.Mock).mockImplementation(() => true); | ||
| }); | ||
|
|
||
| afterEach(() => { | ||
| const client = getClient(); | ||
| client?.close(); | ||
| jest.clearAllTimers(); | ||
| jest.useRealTimers(); | ||
| }); | ||
|
|
||
| describe('beforeSendMetric', () => { | ||
| it('is called when enableMetrics is true and a metric is sent', async () => { | ||
| const beforeSendMetric = jest.fn(metric => metric); | ||
|
|
||
| const client = new ReactNativeClient({ | ||
| ...getDefaultTestClientOptions({ | ||
| dsn: EXAMPLE_DSN, | ||
| enableMetrics: true, | ||
| beforeSendMetric, | ||
| }), | ||
| }); | ||
|
|
||
| setCurrentClient(client); | ||
| client.init(); | ||
|
|
||
| // Send a metric | ||
| metrics.count('test_metric', 1); | ||
|
|
||
| jest.advanceTimersByTime(10000); | ||
| expect(beforeSendMetric).toHaveBeenCalled(); | ||
| }); | ||
|
|
||
| it('is not called when enableMetrics is false', async () => { | ||
| const beforeSendMetric = jest.fn(metric => metric); | ||
|
|
||
| const client = new ReactNativeClient({ | ||
| ...getDefaultTestClientOptions({ | ||
| dsn: EXAMPLE_DSN, | ||
| enableMetrics: false, | ||
| beforeSendMetric, | ||
| }), | ||
| }); | ||
|
|
||
| setCurrentClient(client); | ||
| client.init(); | ||
|
|
||
| // Send a metric | ||
| metrics.count('test_metric', 1); | ||
|
|
||
| jest.advanceTimersByTime(10000); | ||
| expect(beforeSendMetric).not.toHaveBeenCalled(); | ||
| }); | ||
|
|
||
| it('is called when enableMetrics is undefined (metrics are enabled by default)', async () => { | ||
| const beforeSendMetric = jest.fn(metric => metric); | ||
|
|
||
| const client = new ReactNativeClient({ | ||
| ...getDefaultTestClientOptions({ | ||
| dsn: EXAMPLE_DSN, | ||
| beforeSendMetric, | ||
| }), | ||
| }); | ||
|
|
||
| setCurrentClient(client); | ||
| client.init(); | ||
|
|
||
| // Send a metric | ||
| metrics.count('test_metric', 1); | ||
|
|
||
| jest.advanceTimersByTime(10000); | ||
| expect(beforeSendMetric).toHaveBeenCalled(); | ||
| }); | ||
|
|
||
| it('allows beforeSendMetric to modify metrics when enableMetrics is true', async () => { | ||
| const beforeSendMetric = jest.fn(metric => { | ||
| // Modify the metric | ||
| return { ...metric, name: 'modified_metric' }; | ||
| }); | ||
|
|
||
| const client = new ReactNativeClient({ | ||
| ...getDefaultTestClientOptions({ | ||
| dsn: EXAMPLE_DSN, | ||
| enableMetrics: true, | ||
| beforeSendMetric, | ||
| }), | ||
| }); | ||
|
|
||
| setCurrentClient(client); | ||
| client.init(); | ||
|
|
||
| // Send a metric | ||
| metrics.count('test_metric', 1); | ||
|
|
||
| jest.advanceTimersByTime(10000); | ||
| expect(beforeSendMetric).toHaveBeenCalled(); | ||
| const modifiedMetric = beforeSendMetric.mock.results[0]?.value; | ||
| expect(modifiedMetric).toBeDefined(); | ||
| expect(modifiedMetric.name).toBe('modified_metric'); | ||
| }); | ||
|
|
||
| it('allows beforeSendMetric to drop metrics by returning null', async () => { | ||
| const beforeSendMetric = jest.fn(() => null); | ||
|
|
||
| const client = new ReactNativeClient({ | ||
| ...getDefaultTestClientOptions({ | ||
| dsn: EXAMPLE_DSN, | ||
| enableMetrics: true, | ||
| beforeSendMetric, | ||
| }), | ||
| }); | ||
|
|
||
| setCurrentClient(client); | ||
| client.init(); | ||
|
|
||
| // Send a metric | ||
| metrics.count('test_metric', 1); | ||
|
|
||
| // Advance timers | ||
| jest.advanceTimersByTime(10000); | ||
| expect(beforeSendMetric).toHaveBeenCalled(); | ||
| expect(beforeSendMetric.mock.results[0]?.value).toBeNull(); | ||
| }); | ||
| }); | ||
|
|
||
| describe('metrics API', () => { | ||
| it('metrics.count works when enableMetrics is true', () => { | ||
| const client = new ReactNativeClient({ | ||
| ...getDefaultTestClientOptions({ | ||
| dsn: EXAMPLE_DSN, | ||
| enableMetrics: true, | ||
| }), | ||
| }); | ||
|
|
||
| setCurrentClient(client); | ||
| client.init(); | ||
|
|
||
| expect(() => { | ||
| metrics.count('test_metric', 1); | ||
| }).not.toThrow(); | ||
| }); | ||
|
|
||
| it('metrics can be sent with tags', async () => { | ||
| const beforeSendMetric = jest.fn(metric => metric); | ||
|
|
||
| const client = new ReactNativeClient({ | ||
| ...getDefaultTestClientOptions({ | ||
| dsn: EXAMPLE_DSN, | ||
| enableMetrics: true, | ||
| beforeSendMetric, | ||
| }), | ||
| }); | ||
|
|
||
| setCurrentClient(client); | ||
| client.init(); | ||
|
|
||
| // Send a metric with tags | ||
| metrics.count('test_metric', 1, { | ||
| attributes: { environment: 'test' }, | ||
| }); | ||
|
|
||
| jest.advanceTimersByTime(10000); | ||
| expect(beforeSendMetric).toHaveBeenCalled(); | ||
| const sentMetric = beforeSendMetric.mock.calls[0]?.[0]; | ||
| expect(sentMetric).toBeDefined(); | ||
| }); | ||
| }); | ||
| }); | ||
alwx marked this conversation as resolved.
Show resolved
Hide resolved
|
||
This file contains hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
nit: We could add a link to the news docs here