Mikel Blanchard
                                            Mikel Blanchard
                                        
                                    ## Changes * Defines `log.record.id` and `log.record.name` which may be added when Log Records have the concept of durable identification ## Merge requirement checklist * [ ] [CONTRIBUTING.md](https://github.com/open-telemetry/semantic-conventions/blob/main/CONTRIBUTING.md) guidelines followed....
## Changes * Allow SDKs to offer an opt-in feature to auto-populate `service.version` if there are standard ways to do it for the SIG ## Details .NET has some built-in...
I worked through this issue with `OneCollectorExporter` over on contrib: https://github.com/open-telemetry/opentelemetry-dotnet-contrib/pull/1992 Batch exporter maintains its own background thread. As such we typically call the synchronous `HttpClient.Send` operation (where it is...
We implemented this over on the main repo: https://github.com/open-telemetry/opentelemetry-dotnet/pull/5885 Probably a good thing to do here on contrib too. The code can be taken and applied pretty mush as-is. Only...
Relates to #2113 ## Changes * Adds a CI leg for running geneva linux user_events tests when the code is changed. ## Merge requirement checklist * [X] [CONTRIBUTING](https://github.com/open-telemetry/opentelemetry-dotnet-contrib/blob/main/CONTRIBUTING.md) guidelines followed...
Fixes #5907 ## Changes * Use `TryUpdate` instead of `TryRemove` when processing a removed metric so that the lookup dictionary is only modified if a new metric hasn't already been...
## Changes * Switch `LookupAggregatorStore` & `LookupAggregatorStoreForDeltaWithReclaim` to return a `ref` to the `MetricPoint` instead of the index to the `MetricPoint`. For cases where we created a `MetricPoint`, or reused...
**What are you trying to achieve?** I just got an interesting request from a user. They are using some .NET resource detectors like this: ```csharp otelOptions.SetResourceBuilder( ResourceBuilder.CreateDefault() .AddService(serviceName: "VoiceCompanionApp", serviceVersion:...
See: https://github.com/dotnet/runtime/pull/113034