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 23c7a27dab463df6514476b49aac5151118482e2 Author: Andrea Cosentino <anco...@gmail.com> AuthorDate: Wed Sep 25 13:19:25 2019 +0200 Regen docs --- docs/components/modules/ROOT/pages/zipkin.adoc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/components/modules/ROOT/pages/zipkin.adoc b/docs/components/modules/ROOT/pages/zipkin.adoc index e5e40b5..62ff88a 100644 --- a/docs/components/modules/ROOT/pages/zipkin.adoc +++ b/docs/components/modules/ROOT/pages/zipkin.adoc @@ -131,7 +131,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 org.apache.zipkin.reporter2:zipkin-sender-okhttp3) +// (the dependency is io.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 @@ -147,7 +147,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 org.apache.zipkin.reporter2:zipkin-reporter-spring-beans) --> + (the dependency is io.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">