Open kavirajkh opened 6 years ago
Hi Team,
I am using Zipkin implementation and app is working with below code and old builds but not with the latest build. I would like to use the latest builds with spring-boot-starter-webflux. Please help.
public io.opentracing.Tracer zipkinTracer() { OkHttpSender okHttpSender = OkHttpSender.builder() .encoding(Encoding.JSON) .endpoint("http://localhost:9411/api/v1/spans") .build(); AsyncReporter<Span> reporter = AsyncReporter.builder(okHttpSender).build(); Tracing braveTracer = Tracing.newBuilder() .localServiceName("voyager") .reporter(reporter) .traceId128Bit(true) .sampler(Sampler.ALWAYS_SAMPLE) .build(); return BraveTracer.create(braveTracer); }
But not working with
public io.opentracing.Tracer zipkinTracer() { OkHttpSender okHttpSender = OkHttpSender.newBuilder() .encoding((Encoding.JSON)) .endpoint("http://localhost:9411/api/v1/spans") .build(); AsyncReporter<Span> reporter = AsyncReporter.create(okHttpSender); Tracing braveTracer = Tracing.newBuilder() .localServiceName("voyager-preview") .spanReporter(reporter) .traceId128Bit(true) .sampler(Sampler.ALWAYS_SAMPLE) .build(); return BraveTracer.create(braveTracer); }
demo-tracing.zip
Hi Team,
I am using Zipkin implementation and app is working with below code and old builds but not with the latest build. I would like to use the latest builds with spring-boot-starter-webflux. Please help.
But not working with
demo-tracing.zip