From 1bd70cb55dd8837393e6dae270c850f3fb3f824d Mon Sep 17 00:00:00 2001 From: Chris Date: Fri, 18 Sep 2020 14:22:53 +0200 Subject: [PATCH] fixed typo in README and added w3c propagation note (#105) --- README.md | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 6f07e9a..f047c4e 100644 --- a/README.md +++ b/README.md @@ -144,6 +144,10 @@ A custom sampler could of course be provided by declaring a bean of type `io.jae `opentracing.jaeger.enable-b3-propagation = true` +### Propagate headers in W3C Trace Context format + +`opentracing.jaeger.enable-w3c-propagation = true` + ## Advanced cases ### Manual bean provisioning @@ -194,10 +198,8 @@ public class MyTracerConfiguration { @Bean public io.opentracing.Tracer jaegerTracer() { - return io.opentracing.noop.NoopTracerFactory.create() - } + return io.opentracing.noop.NoopTracerFactory.create(); } - } ```