This is an automated email from the ASF dual-hosted git repository. acosentino pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/camel.git
commit 37aa58cb4649474609f560334c5529967e8e66bb Author: Andrea Cosentino <anco...@gmail.com> AuthorDate: Wed Jun 5 16:54:07 2019 +0200 CAMEL-13615 - Cleanup docs --- components/camel-zipkin/src/main/docs/zipkin.adoc | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/components/camel-zipkin/src/main/docs/zipkin.adoc b/components/camel-zipkin/src/main/docs/zipkin.adoc index d04c4b7..b2bbdb9 100644 --- a/components/camel-zipkin/src/main/docs/zipkin.adoc +++ b/components/camel-zipkin/src/main/docs/zipkin.adoc @@ -9,9 +9,6 @@ outgoing Camel messages using http://zipkin.io/[zipkin]. Events (span) are captured for incoming and outgoing messages being sent to/from Camel. -NOTE: camel-zipkin is planned to be refactored in Camel 2.22.0 to not use zipkin-scribe -but use the default http transport. This work may cause backwards incompatibility. - This means you need to configure which Camel endpoints map to zipkin service names. @@ -133,7 +130,7 @@ To enable camel-zipkin you need to configure first ---- ZipkinTracer zipkin = new ZipkinTracer(); // Configure a reporter, which controls how often spans are sent -// (the dependency is io.zipkin.reporter2:zipkin-sender-okhttp3) +// (the dependency is org.apache.zipkin.reporter2:zipkin-sender-okhttp3) sender = OkHttpSender.create("http://127.0.0.1:9411/api/v2/spans"); zipkin.setSpanReporter(AsyncReporter.create(sender)); // and then add zipkin to the CamelContext @@ -149,7 +146,7 @@ zipkin tracer beans. Camel will automatically discover and use them. [source,xml] ---- <!-- configure how to reporter spans to a Zipkin collector - (the dependency is io.zipkin.reporter2:zipkin-reporter-spring-beans) --> + (the dependency is org.apache.zipkin.reporter2:zipkin-reporter-spring-beans) --> <bean id="http" class="zipkin2.reporter.beans.AsyncReporterFactoryBean"> <property name="sender"> <bean id="sender" class="zipkin2.reporter.beans.OkHttpSenderFactoryBean">