my code: https://github.com/nikita111100/gRPC-vs-REST
i cant get a trace of all services I guess grpc-spring-boot-starter can do this without propagate headers
my code: https://github.com/nikita111100/gRPC-vs-REST
i cant get a trace of all services I guess grpc-spring-boot-starter can do this without propagate headers
it works for me
@Configuration
public class TracingConfig {
@GrpcGlobalClientInterceptor
TracingClientInterceptor tracingInterceptor(Tracer tracer) {
return TracingClientInterceptor
.newBuilder()
.withTracer(tracer)
.build();
}