-
Notifications
You must be signed in to change notification settings - Fork 893
ZipkinExporter Stuck Batch Fix #1726
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
Changes from 3 commits
793d9a7
6fe02d0
97a3312
19b52fc
09c2f91
029d507
5073862
1584a6a
66e301a
90daff7
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -41,7 +41,11 @@ public void OnNext(KeyValuePair<string, object> value) | |
| { | ||
| if (!this.handler.SupportsNullActivity && Activity.Current == null) | ||
| { | ||
| InstrumentationEventSource.Log.NullActivity(value.Key); | ||
| if (!Sdk.SuppressInstrumentation) | ||
|
Contributor
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. should we add this check inside the instrumentationEventSource? because we can forget if someone adds a new Log, no?
Member
Author
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. Good question. If you look at this method there are 4 or 5 |
||
| { | ||
| InstrumentationEventSource.Log.NullActivity(value.Key); | ||
| } | ||
|
|
||
| return; | ||
| } | ||
|
|
||
|
|
||
Uh oh!
There was an error while loading. Please reload this page.