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
Everything starts with opentelemetry.trace.*, some properties (like opentelemetry.trace.exporters.jaeger.servicename) do not exist anymore, there's even no way to configure the Resource.
We should use the same property names that we use in SDK or javaagent, e.g.:
otel.traces.* for tracer config;
otel.instrumentation.<name>.enabled to enable manual instrumentations (@WithSpan advice, HTTP clients, etc);
And add otel.resource.attributes support so that service.name is properly set.
The text was updated successfully, but these errors were encountered:
Current spring-boot-autoconfigure configuration naming scheme is very different from what we use in SDK/javaagent: https://github.com/open-telemetry/opentelemetry-java-instrumentation/blob/main/instrumentation/spring/spring-boot-autoconfigure/README.md#configuration-properties
Everything starts with
opentelemetry.trace.*
, some properties (likeopentelemetry.trace.exporters.jaeger.servicename
) do not exist anymore, there's even no way to configure the Resource.We should use the same property names that we use in SDK or javaagent, e.g.:
otel.traces.*
for tracer config;otel.instrumentation.<name>.enabled
to enable manual instrumentations (@WithSpan
advice, HTTP clients, etc);otel.resource.attributes
support so thatservice.name
is properly set.The text was updated successfully, but these errors were encountered: