From 025f0a225e79ab33ad03baa9f1ec8cffa0675128 Mon Sep 17 00:00:00 2001 From: buildmaster Date: Wed, 4 Apr 2018 15:22:43 +0000 Subject: [PATCH] Sync docs from master to gh-pages --- multi/multi__sending_spans_to_zipkin.html | 2 +- single/spring-cloud-sleuth.html | 2 +- spring-cloud-sleuth.xml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/multi/multi__sending_spans_to_zipkin.html b/multi/multi__sending_spans_to_zipkin.html index 59838837e..d302fee54 100644 --- a/multi/multi__sending_spans_to_zipkin.html +++ b/multi/multi__sending_spans_to_zipkin.html @@ -24,5 +24,5 @@ object, you will have to create a bean of zipkin2.reporter ZipkinRestTemplateCustomizer zipkinRestTemplateCustomizer) { RestTemplate restTemplate = mySuperCustomRestTemplate(); zipkinRestTemplateCustomizer.customize(restTemplate); - return new RestTemplateSender(restTemplate, zipkin.getBaseUrl(), zipkin.getEncoder()); + return myCustomSender(zipkin, restTemplate); } \ No newline at end of file diff --git a/single/spring-cloud-sleuth.html b/single/spring-cloud-sleuth.html index fbb7b885d..755e4a2cb 100644 --- a/single/spring-cloud-sleuth.html +++ b/single/spring-cloud-sleuth.html @@ -686,7 +686,7 @@ object, you will have to create a bean of zipkin2.reporter ZipkinRestTemplateCustomizer zipkinRestTemplateCustomizer) { RestTemplate restTemplate = mySuperCustomRestTemplate(); zipkinRestTemplateCustomizer.customize(restTemplate); - return new RestTemplateSender(restTemplate, zipkin.getBaseUrl(), zipkin.getEncoder()); + return myCustomSender(zipkin, restTemplate); }

14. Zipkin Stream Span Consumer

[Important]Important

We recommend using Zipkin’s native support for message-based span sending. Starting from the Edgware release, the Zipkin Stream server is deprecated. In the Finchley release, it got removed.

See the Dalston Documentaion diff --git a/spring-cloud-sleuth.xml b/spring-cloud-sleuth.xml index c02374e08..4742c74f5 100644 --- a/spring-cloud-sleuth.xml +++ b/spring-cloud-sleuth.xml @@ -1521,7 +1521,7 @@ object, you will have to create a bean of zipkin2.reporter.Sender