-
Notifications
You must be signed in to change notification settings - Fork 16
feat: add otelResourceAttributes option for OpenTelemetry resource attributes #190
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
feat: add otelResourceAttributes option for OpenTelemetry resource attributes #190
Conversation
🦋 Changeset detectedLatest commit: 393892f The changes in this PR will be included in the next version bump. This PR includes changesets to release 1 package
Not sure what this means? Click here to learn what changesets are. Click here if you're a maintainer who wants to add another changeset to this PR |
…l span attributes
…elemetry resource attributes
…m initialization to include user-provided attributes
wrn14897
left a comment
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.
Thanks for the contribution!
|
@wrn14897 any idea when this will get published? |
|
@ohitslaurence Thanks for the reminder. The v0.22.0 was released |
This pull request adds support for setting OpenTelemetry resource attributes in the browser SDK, allowing users to specify custom key/value pairs (such as service version or deployment environment) that are attached as global attributes. The changes include updates to the SDK configuration, documentation, and initialization logic.
OpenTelemetry resource attributes support:
otelResourceAttributesarray to theBrowserSDKConfigtype inindex.ts, allowing users to specify key/value pairs for OpenTelemetry resource attributes.Browserclass constructor to accept and process theotelResourceAttributesoption, converting the array to an object and setting them as global attributes during initialization. [1] [2]Documentation updates:
README.mdto demonstrate how to use the newotelResourceAttributesoption inHyperDX.init.otelResourceAttributesoption, including a code example, to the configuration options list inREADME.md.