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
We currently have auto-configuration for tracing via OpenTelemetry, by providing a SdkTracerProvider and ContextPropagators bean, which get registered on the OpenTelemetry bean.
OpenTelemetry supports metrics and logging, too. At the moment we don't want to auto-configure full support for that, but we should register the SdkLoggerProvider and SdkMeterProvider on the OpenTelemetry bean if they are in the application context.
This makes it easier for users who supply those beans themselves.
The text was updated successfully, but these errors were encountered:
The OpenTelemetry bean is now configured in the
OpenTelemetryAutoConfiguration. This method also applies
SdkLoggerProvider and SdkMeterProvider.
Additionally, the OpenTelemetry Resource is now a bean. Resource
attributes can now be configured through properties
The resourceAttributes in OtlpProperties have been deprecated in favor
of the new one in OpenTelemetryProperties.
Closesspring-projectsgh-36544Closesspring-projectsgh-36545
mhalbritter
added a commit
to mhalbritter/spring-boot
that referenced
this issue
Jul 25, 2023
The OpenTelemetry bean is now configured in the
OpenTelemetryAutoConfiguration. This method also applies
SdkLoggerProvider and SdkMeterProvider.
Additionally, the OpenTelemetry Resource is now a bean. Resource
attributes can now be configured through properties
The resourceAttributes in OtlpProperties have been deprecated in favor
of the new one in OpenTelemetryProperties.
Closesspring-projectsgh-36544Closesspring-projectsgh-36545
mhalbritter
added a commit
to mhalbritter/spring-boot
that referenced
this issue
Jul 25, 2023
The OpenTelemetry bean is now configured in the
OpenTelemetryAutoConfiguration. This method also applies
SdkLoggerProvider and SdkMeterProvider.
Additionally, the OpenTelemetry Resource is now a bean. Resource
attributes can now be configured through properties
The resourceAttributes in OtlpProperties have been deprecated in favor
of the new one in OpenTelemetryProperties.
Closesspring-projectsgh-36544Closesspring-projectsgh-36545
We currently have auto-configuration for tracing via OpenTelemetry, by providing a
SdkTracerProvider
andContextPropagators
bean, which get registered on theOpenTelemetry
bean.OpenTelemetry supports metrics and logging, too. At the moment we don't want to auto-configure full support for that, but we should register the
SdkLoggerProvider
andSdkMeterProvider
on theOpenTelemetry
bean if they are in the application context.This makes it easier for users who supply those beans themselves.
The text was updated successfully, but these errors were encountered: