-
Notifications
You must be signed in to change notification settings - Fork 529
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
chore(deps): update deps matching "@opentelemetry/" #2408
Changes from all commits
1b9b495
f8cb2e7
b408671
594b939
3c598bb
bd2a449
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Large diffs are not rendered by default.
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -96,7 +96,7 @@ export class BunyanInstrumentation extends InstrumentationBase<BunyanInstrumenta | |
} | ||
|
||
override setConfig(config: BunyanInstrumentationConfig = {}) { | ||
this._config = { ...DEFAULT_CONFIG, ...config }; | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. reviewer note: this did override the |
||
super.setConfig({ ...DEFAULT_CONFIG, ...config }); | ||
} | ||
|
||
private _getPatchedEmit() { | ||
|
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.
reviewer note: some tests incorrectly used
SpanKind
instead of the OTLP representation of the same enum. The number values are different, but the tests that used it did look somewhat plausible.INTERNAL spans were asserted to be SERVER spans, the first SERVER span was asserted as a CLIENT span as they shared the same value.
I opted to add this here as we'll change the exports from
@opentelemetry/otlp-transformer
soon-ish and that type we have there will not be exported anymore. Not using the type from there will help save use some work when we have to clean up the tests in this repo eventually.