Repository: camel Updated Branches: refs/heads/master 7ada8851b -> 105c0de09
CAMEL-11245 remove references to GlobalTracer Project: http://git-wip-us.apache.org/repos/asf/camel/repo Commit: http://git-wip-us.apache.org/repos/asf/camel/commit/105c0de0 Tree: http://git-wip-us.apache.org/repos/asf/camel/tree/105c0de0 Diff: http://git-wip-us.apache.org/repos/asf/camel/diff/105c0de0 Branch: refs/heads/master Commit: 105c0de0970b151b3708534245cc0e17255b1f19 Parents: 7ada885 Author: Kevin Earls <ke...@kevinearls.com> Authored: Tue May 9 13:42:35 2017 +0200 Committer: Claus Ibsen <davscl...@apache.org> Committed: Tue May 9 15:11:54 2017 +0200 ---------------------------------------------------------------------- components/camel-opentracing/src/main/docs/opentracing.adoc | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/camel/blob/105c0de0/components/camel-opentracing/src/main/docs/opentracing.adoc ---------------------------------------------------------------------- diff --git a/components/camel-opentracing/src/main/docs/opentracing.adoc b/components/camel-opentracing/src/main/docs/opentracing.adoc index 6b56989..f753880 100644 --- a/components/camel-opentracing/src/main/docs/opentracing.adoc +++ b/components/camel-opentracing/src/main/docs/opentracing.adoc @@ -9,9 +9,7 @@ outgoing Camel messages using http://opentracing.io/[OpenTracing]. Events (spans) are captured for incoming and outgoing messages being sent to/from Camel. -The component uses the https://github.com/opentracing-contrib/java-globaltracer[Global Tracer] -project to obtain an OpenTracing provider. See the http://opentracing.io/[OpenTracing] -website for a list of supported tracers. +See the http://opentracing.io/[OpenTracing] website for a list of supported tracers. ### Configuration @@ -29,7 +27,7 @@ context. You can optionally specify a `Tracer`, or alternatively it can be impli [source,java] -------------------------------------------------------------------------------------------------- OpenTracingTracer ottracer = new OpenTracingTracer(); -// By default it uses the Global Tracer, but you can override it with a specific OpenTracing implementation. +// By default it uses a Noop Tracer, but you can override it with a specific OpenTracing implementation. ottracer.setTracer(...); // And then initialize the context ottracer.init(camelContext);