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
In the autoconfiguration class org.springframework.grpc.autoconfigure.client.GrpcClientObservationAutoConfiguration an ObservationGrpcClientInterceptor is created. This Interceptor is annotated with @GlobalClientInterceptor. That is, under the conditions specified on the class, this Interceptor will always be created and will be included in all channels. It has a setCustomConvention method, but to use it, you need to create a new instance and manually add сustom сonvention there.
I proposal adding a @ConditionalOnMissingBean annotation to this method so that a custom convention can be configured if needed.