-
Notifications
You must be signed in to change notification settings - Fork 8
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
Add caller.function and caller.module labels #136
Merged
Merged
Conversation
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
arendjr
approved these changes
Oct 25, 2023
Co-authored-by: Arend van Beelen jr. <arendjr@gmail.com>
stephlow
approved these changes
Oct 25, 2023
arendjr
added a commit
that referenced
this pull request
Nov 7, 2023
* Use the same Node version everywhere * Add platform.web.ts and put getALSInstance() into platform.*.ts * Add callerInfo tests * Fix tracking caller * Add caller.function and caller.module labels (#136) * Update caller info to include function and module separately * Update tests * Fix import order linter issue * Update biome.json * Update packages/autometrics/src/wrappers.ts Co-authored-by: Arend van Beelen jr. <arendjr@gmail.com> * Update otlp exporter snapshot test * fix example tests --------- Co-authored-by: Arend van Beelen jr. <arendjr@gmail.com> * Make sure platform.web.js gets built * Add react-app-experimental and let 'just clean' also clean node_modules * Rewrite NPM packages using Rollup * Everything builds :party: * Don't depend on node-fetch-native in web build * Fix tests * Add instructions on how to use import maps * Fix react-app-experimental * Lint fix --------- Co-authored-by: Laurynas Keturakis <laurynas.keturakis@gmail.com>
arendjr
added a commit
that referenced
this pull request
Nov 7, 2023
* Use the same Node version everywhere * Add platform.web.ts and put getALSInstance() into platform.*.ts * Add callerInfo tests * Fix tracking caller * Add caller.function and caller.module labels (#136) * Update caller info to include function and module separately * Update tests * Fix import order linter issue * Update biome.json * Update packages/autometrics/src/wrappers.ts Co-authored-by: Arend van Beelen jr. <arendjr@gmail.com> * Update otlp exporter snapshot test * fix example tests --------- Co-authored-by: Arend van Beelen jr. <arendjr@gmail.com> * Make sure platform.web.js gets built * Add react-app-experimental and let 'just clean' also clean node_modules * Rewrite NPM packages using Rollup * Everything builds :party: * Don't depend on node-fetch-native in web build * Fix tests * Add instructions on how to use import maps * Fix react-app-experimental * Lint fix * Submit repository fields with build_info * Export build_info label constants * Initialize buildInfo directly instead of waiting for createDefaultBuildInfo() * Organize imports * Fix imports * Resolve warning about node:fs --------- Co-authored-by: Laurynas Keturakis <laurynas.keturakis@gmail.com>
arendjr
added a commit
that referenced
this pull request
Nov 13, 2023
* Use the same Node version everywhere * Add platform.web.ts and put getALSInstance() into platform.*.ts * Add callerInfo tests * Fix tracking caller * Add caller.function and caller.module labels (#136) * Update caller info to include function and module separately * Update tests * Fix import order linter issue * Update biome.json * Update packages/autometrics/src/wrappers.ts Co-authored-by: Arend van Beelen jr. <arendjr@gmail.com> * Update otlp exporter snapshot test * fix example tests --------- Co-authored-by: Arend van Beelen jr. <arendjr@gmail.com> * Make sure platform.web.js gets built * Add react-app-experimental and let 'just clean' also clean node_modules * Rewrite NPM packages using Rollup * Everything builds :party: * Don't depend on node-fetch-native in web build * Fix tests * Add instructions on how to use import maps * Fix react-app-experimental * Lint fix * Submit repository fields with build_info * Export build_info label constants * Initialize buildInfo directly instead of waiting for createDefaultBuildInfo() * Organize imports * Fix imports * Resolve warning about node:fs * Allow skipping methods with decorators * Rename test file * Add tests for modern decorators * Don't use ranges in package files * Use the same version in the express example --------- Co-authored-by: Laurynas Keturakis <laurynas.keturakis@gmail.com>
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
This PR updates the library so it correctly reports the
caller_function
andcaller_module
information as per spec.