I use spring data couchbase v. 4.4.7 to integrate with Couchbase from webflux app . Initialized clusterenviornment but we have custom opentelemetry . To use both I autowired the own custom tracer and tried to pass it to sdk like below:
ClusterEnviornment env = ClusterEnviornment.builder()
.requestTracer(RequestTracer) tracer).build();
But this casting from custom tracer to RequestTracer id not working. Any guidance will be appreciated.