Mikel Blanchard
Mikel Blanchard
Question... > var attributes = new LogRecordAttributeList { { "{OriginalFormat}", "original format" } }; Why are you doing this? `{OriginalFormat}` is an ILogger thing. It has nothing to do with...
Make your own name 😄 We own the `dotnet` prefix, really. So `dotnet.nlog.template` would be fine. Anything with the prefix `dotnet.nlog` we should be able to drive the semantic conventions....
@yassinebennani We removed it from the public API because we were unsure on the use case and if it was really useful/needed. You want to include trace state on your...
I haven't looked at Grace yet. First I've ever heard of it 🤣 My guess would be it is the same issue as the Unity one linked above. When using...
This might be really hard to do at the moment because logs/traces/metrics share a single options class. We have [talked in the past about splitting up the OtlpExporter into projects...
I think a meta package would be fine. Or perhaps it could be something only auto-instrumentation supports? @alanwest and I have talked about having an "auto-configuration" package ([I did some...
@pawel-ta If you call the cross-cutting "UseOtlpExporter" extension (https://github.com/open-telemetry/opentelemetry-dotnet/tree/main/src/OpenTelemetry.Exporter.OpenTelemetryProtocol#enable-otlp-exporter-for-all-signals) some of the spec signal-specific env vars are now supported! Here is the list of currently supported keys: https://github.com/open-telemetry/opentelemetry-dotnet/blob/main/src/OpenTelemetry.Exporter.OpenTelemetryProtocol/Implementation/OtlpSpecConfigDefinitions.cs
For better or worse, this is working as designed 🤣 We couldn't change it now without likely breaking users. We could introduce some settings/options to opt-into different behavior though. I...
Just FYI for anyone landing on this PR @samsp-msft contributed a [RateLimitingSampler](https://github.com/open-telemetry/opentelemetry-dotnet-contrib/blob/main/src/OpenTelemetry.Extensions/README.md#ratelimitingsampler) over on contrib.
@srprash We have some automation in place. When issues are created we'll add labels based on the component the user selects. For PRs we'll add labels based on files being...