Default OLTP protocol in dotnet #5987
-
https://github.com/open-telemetry/opentelemetry-dotnet/blob/core-1.9.0/src/OpenTelemetry.Exporter.OpenTelemetryProtocol/README.md#otlpexporteroptions https://github.com/open-telemetry/opentelemetry-dotnet-instrumentation/blob/v1.9.0/docs/config.md#otlp Is one of the sources wrong? Or what am I missing? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 4 replies
-
Auto-instrumentation used http as default, but sdk (i.e this repo) uses gRPC as default. This repo should also change to HTTP by default, when there is a major bump (2.* release), but AFAICT, there is no such plans near term. |
Beta Was this translation helpful? Give feedback.
Auto-instrumentation used http as default, but sdk (i.e this repo) uses gRPC as default.
The spec recommends Http as default unless there is a good reason. For this repo, there is good reason - it shipped 1.0 with gRPC as default, so changing default to Http is a breaking change.
This repo should also change to HTTP by default, when there is a major bump (2.* release), but AFAICT, there is no such plans near term.
#2959 is an existing issue for this.