Mikel Blanchard
Mikel Blanchard
@reyang Description updated to include link to closed PRs for "direct contributions" mention.
Which requirement are you referring to? This one? > Reviewer for or author of at least 10 substantial PRs to the codebase, with the definition of substantial subject to the...
@Aaronontheweb Here are my thoughts... * You could definitely add this as-is over in https://github.com/open-telemetry/opentelemetry-dotnet-contrib. If you want to just do that and stop reading, fine by me. * I...
I am supportive of a cross-cutting `UseConsoleExporter` extension! I intended to add a lot more cross-cutting things but my efforts have been stalled by #5325. Without a way for .NET...
> This is unavoidable due to conflicting rules. One rule requires a space and another requires there to be no space so both cannot be satified. `enumerable = [new KeyValuePair("url.path",...
@martinjt > In terms of the wider idea of the allocations, my suggestion to sidestep this if it's a concern is to make it opt-in by adding a parameter that...
Couldn't you do this? ```csharp public async Task CallThirdPartyServiceAndReturnResponse(Uri requestUri) { // Turn off flow of Activity & Baggage for this ExecutionContext using var flow = ExecutionContext.SuppressFlow(); // Make the...
Ya it will still create an `Activity` \ span but it shouldn't be parented to the current trace it will be a new root. So you won't leak the internal...