open-telemetry/opentelemetry-dotnet
GitHub で見る[otlp] UseOtlpExporter and AddOtlpExporter extensions don't play nice together
Open
#5,538 opened on 2024年4月16日
help wantedpkg:OpenTelemetry.Exporter.OpenTelemetryProtocol
Repository metrics
- Stars
- (3,725 stars)
- PR merge metrics
- (PR metrics pending)
説明
In 1.8.0 we introduced the UseOtlpExporter extension which will turn on OtlpExporter for all signals. If UseOtlpExporter is called more than once, or AddOtlpExporter is called in addition, exceptions will be thrown:
-
NotSupportedException: Multiple calls to UseOtlpExporter on the same IServiceCollection are not supported.
-
NotSupportedException: Signal-specific AddOtlpExporter methods and the cross-cutting UseOtlpExporter method being invoked on the same IServiceCollection is not supported.
This was intentionally done but some users have run into issues:
Opening this issue to track the demand for changing the behavior.