Return-Path: X-Original-To: archive-asf-public-internal@cust-asf2.ponee.io Delivered-To: archive-asf-public-internal@cust-asf2.ponee.io Received: from cust-asf.ponee.io (cust-asf.ponee.io [163.172.22.183]) by cust-asf2.ponee.io (Postfix) with ESMTP id 6BCC8200C6F for ; Tue, 9 May 2017 15:12:41 +0200 (CEST) Received: by cust-asf.ponee.io (Postfix) id 6A780160BB6; Tue, 9 May 2017 13:12:41 +0000 (UTC) Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by cust-asf.ponee.io (Postfix) with SMTP id AEB5E160BB3 for ; Tue, 9 May 2017 15:12:40 +0200 (CEST) Received: (qmail 60371 invoked by uid 500); 9 May 2017 13:12:39 -0000 Mailing-List: contact commits-help@camel.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@camel.apache.org Delivered-To: mailing list commits@camel.apache.org Received: (qmail 60362 invoked by uid 99); 9 May 2017 13:12:39 -0000 Received: from git1-us-west.apache.org (HELO git1-us-west.apache.org) (140.211.11.23) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 09 May 2017 13:12:39 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id C4F32E00A3; Tue, 9 May 2017 13:12:39 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: davsclaus@apache.org To: commits@camel.apache.org Message-Id: <0128ea723f0748b48375a7caa26cc170@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: camel git commit: CAMEL-11245 remove references to GlobalTracer Date: Tue, 9 May 2017 13:12:39 +0000 (UTC) archived-at: Tue, 09 May 2017 13:12:41 -0000 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 Authored: Tue May 9 13:42:35 2017 +0200 Committer: Claus Ibsen 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);