You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
From Dec 2023, language SDKs such as java, .Net, have removed environment variable OTEL_SEMCONV_STABILITY_OPT_IN support. The latest version of OTel SDK only emit the new http attributes. So, some vendors got customer issue that http attribute fields missing.
From the otel collector code I suppose the semantic convention in Collector is still v1.22.0? May I know is there plan for migrating the http semantic convention breaking change? If there is no plan, should I manually update my exporter translation logic to be:
import conventions "go.opentelemetry.io/collector/semconv/v1.6.1"
span.Attributes().Range(func(key string, value pcommon.Value) bool {
switch key {
case conventions.AttributeHTTPMethod, "http.request.method": // http.request.method is new attribute key
translate to vendor's span format...
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
Context:
From Dec 2023, language SDKs such as java, .Net, have removed environment variable
OTEL_SEMCONV_STABILITY_OPT_IN
support. The latest version of OTel SDK only emit the new http attributes. So, some vendors got customer issue that http attribute fields missing.From the otel collector code I suppose the semantic convention in Collector is still v1.22.0? May I know is there plan for migrating the http semantic convention breaking change? If there is no plan, should I manually update my exporter translation logic to be:
Beta Was this translation helpful? Give feedback.
All reactions