BAEL-574 adding reporters as beans instead of config classes
This commit is contained in:
parent
c4b693745b
commit
551d124e8b
|
@ -1,32 +0,0 @@
|
||||||
package com.baeldung.spring.cloud.bootstrap.gateway;
|
|
||||||
|
|
||||||
import com.netflix.appinfo.InstanceInfo;
|
|
||||||
import com.netflix.discovery.EurekaClient;
|
|
||||||
import org.springframework.beans.factory.annotation.Autowired;
|
|
||||||
import org.springframework.beans.factory.annotation.Value;
|
|
||||||
import org.springframework.cloud.sleuth.metric.SpanMetricReporter;
|
|
||||||
import org.springframework.cloud.sleuth.zipkin.HttpZipkinSpanReporter;
|
|
||||||
import org.springframework.cloud.sleuth.zipkin.ZipkinProperties;
|
|
||||||
import org.springframework.cloud.sleuth.zipkin.ZipkinSpanReporter;
|
|
||||||
import org.springframework.context.annotation.Configuration;
|
|
||||||
import zipkin.Span;
|
|
||||||
|
|
||||||
@Configuration
|
|
||||||
public class EurekaZipkinSpanReporter implements ZipkinSpanReporter {
|
|
||||||
|
|
||||||
@Autowired
|
|
||||||
private EurekaClient eurekaClient;
|
|
||||||
@Autowired
|
|
||||||
private SpanMetricReporter spanMetricReporter;
|
|
||||||
@Autowired
|
|
||||||
private ZipkinProperties zipkinProperties;
|
|
||||||
@Value("${spring.sleuth.web.skipPattern}")
|
|
||||||
private String skipPattern;
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public void report(Span span) {
|
|
||||||
InstanceInfo instance = eurekaClient.getNextServerFromEureka("zipkin", false);
|
|
||||||
HttpZipkinSpanReporter reporter = new HttpZipkinSpanReporter(instance.getHomePageUrl(), zipkinProperties.getFlushInterval(), zipkinProperties.getCompression().isEnabled(), spanMetricReporter);
|
|
||||||
if (!span.name.matches(skipPattern)) reporter.report(span);
|
|
||||||
}
|
|
||||||
}
|
|
|
@ -1,6 +1,9 @@
|
||||||
package com.baeldung.spring.cloud.bootstrap.gateway;
|
package com.baeldung.spring.cloud.bootstrap.gateway;
|
||||||
|
|
||||||
|
import com.netflix.appinfo.InstanceInfo;
|
||||||
|
import com.netflix.discovery.EurekaClient;
|
||||||
import org.springframework.beans.factory.annotation.Autowired;
|
import org.springframework.beans.factory.annotation.Autowired;
|
||||||
|
import org.springframework.beans.factory.annotation.Value;
|
||||||
import org.springframework.boot.SpringApplication;
|
import org.springframework.boot.SpringApplication;
|
||||||
import org.springframework.boot.autoconfigure.SpringBootApplication;
|
import org.springframework.boot.autoconfigure.SpringBootApplication;
|
||||||
import org.springframework.cloud.client.loadbalancer.LoadBalanced;
|
import org.springframework.cloud.client.loadbalancer.LoadBalanced;
|
||||||
|
@ -8,8 +11,13 @@ import org.springframework.cloud.netflix.eureka.EnableEurekaClient;
|
||||||
import org.springframework.cloud.netflix.ribbon.RibbonClientSpecification;
|
import org.springframework.cloud.netflix.ribbon.RibbonClientSpecification;
|
||||||
import org.springframework.cloud.netflix.ribbon.SpringClientFactory;
|
import org.springframework.cloud.netflix.ribbon.SpringClientFactory;
|
||||||
import org.springframework.cloud.netflix.zuul.EnableZuulProxy;
|
import org.springframework.cloud.netflix.zuul.EnableZuulProxy;
|
||||||
|
import org.springframework.cloud.sleuth.metric.SpanMetricReporter;
|
||||||
|
import org.springframework.cloud.sleuth.zipkin.HttpZipkinSpanReporter;
|
||||||
|
import org.springframework.cloud.sleuth.zipkin.ZipkinProperties;
|
||||||
|
import org.springframework.cloud.sleuth.zipkin.ZipkinSpanReporter;
|
||||||
import org.springframework.context.annotation.Bean;
|
import org.springframework.context.annotation.Bean;
|
||||||
import org.springframework.web.client.RestTemplate;
|
import org.springframework.web.client.RestTemplate;
|
||||||
|
import zipkin.Span;
|
||||||
|
|
||||||
import java.util.ArrayList;
|
import java.util.ArrayList;
|
||||||
import java.util.List;
|
import java.util.List;
|
||||||
|
@ -18,23 +26,50 @@ import java.util.List;
|
||||||
@EnableZuulProxy
|
@EnableZuulProxy
|
||||||
@EnableEurekaClient
|
@EnableEurekaClient
|
||||||
public class GatewayApplication {
|
public class GatewayApplication {
|
||||||
public static void main(String[] args) {
|
public static void main(String[] args) {
|
||||||
SpringApplication.run(GatewayApplication.class, args);
|
SpringApplication.run(GatewayApplication.class, args);
|
||||||
}
|
}
|
||||||
|
|
||||||
@Autowired(required = false)
|
@Autowired(required = false)
|
||||||
private List<RibbonClientSpecification> configurations = new ArrayList<>();
|
private List<RibbonClientSpecification> configurations = new ArrayList<>();
|
||||||
|
@Autowired
|
||||||
|
private EurekaClient eurekaClient;
|
||||||
|
@Autowired
|
||||||
|
private SpanMetricReporter spanMetricReporter;
|
||||||
|
@Autowired
|
||||||
|
private ZipkinProperties zipkinProperties;
|
||||||
|
@Value("${spring.sleuth.web.skipPattern}")
|
||||||
|
private String skipPattern;
|
||||||
|
|
||||||
@Bean
|
@Bean
|
||||||
@LoadBalanced
|
@LoadBalanced
|
||||||
RestTemplate restTemplate() {
|
RestTemplate restTemplate() {
|
||||||
return new RestTemplate();
|
return new RestTemplate();
|
||||||
}
|
}
|
||||||
|
|
||||||
@Bean
|
@Bean
|
||||||
public SpringClientFactory springClientFactory() {
|
public SpringClientFactory springClientFactory() {
|
||||||
SpringClientFactory factory = new SpringClientFactory();
|
SpringClientFactory factory = new SpringClientFactory();
|
||||||
factory.setConfigurations(this.configurations);
|
factory.setConfigurations(this.configurations);
|
||||||
return factory;
|
return factory;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Bean
|
||||||
|
public ZipkinSpanReporter makeZipkinSpanReporter() {
|
||||||
|
return new ZipkinSpanReporter() {
|
||||||
|
private HttpZipkinSpanReporter delegate;
|
||||||
|
private String baseUrl;
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void report(Span span) {
|
||||||
|
InstanceInfo instance = eurekaClient.getNextServerFromEureka("zipkin", false);
|
||||||
|
if (!(baseUrl != null && instance.getHomePageUrl().equals(baseUrl))) {
|
||||||
|
baseUrl = instance.getHomePageUrl();
|
||||||
|
delegate = new HttpZipkinSpanReporter(baseUrl, zipkinProperties.getFlushInterval(), zipkinProperties.getCompression().isEnabled(), spanMetricReporter);
|
||||||
|
if (!span.name.matches(skipPattern)) delegate.report(span);
|
||||||
|
}
|
||||||
|
if (!span.name.matches(skipPattern)) delegate.report(span);
|
||||||
|
}
|
||||||
|
};
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,13 +1,52 @@
|
||||||
package com.baeldung.spring.cloud.bootstrap.svcbook;
|
package com.baeldung.spring.cloud.bootstrap.svcbook;
|
||||||
|
|
||||||
|
import com.netflix.appinfo.InstanceInfo;
|
||||||
|
import com.netflix.discovery.EurekaClient;
|
||||||
|
import org.springframework.beans.factory.annotation.Autowired;
|
||||||
|
import org.springframework.beans.factory.annotation.Value;
|
||||||
import org.springframework.boot.SpringApplication;
|
import org.springframework.boot.SpringApplication;
|
||||||
import org.springframework.boot.autoconfigure.SpringBootApplication;
|
import org.springframework.boot.autoconfigure.SpringBootApplication;
|
||||||
import org.springframework.cloud.netflix.eureka.EnableEurekaClient;
|
import org.springframework.cloud.netflix.eureka.EnableEurekaClient;
|
||||||
|
import org.springframework.cloud.sleuth.metric.SpanMetricReporter;
|
||||||
|
import org.springframework.cloud.sleuth.zipkin.HttpZipkinSpanReporter;
|
||||||
|
import org.springframework.cloud.sleuth.zipkin.ZipkinProperties;
|
||||||
|
import org.springframework.cloud.sleuth.zipkin.ZipkinSpanReporter;
|
||||||
|
import org.springframework.context.annotation.Bean;
|
||||||
|
import zipkin.Span;
|
||||||
|
|
||||||
@SpringBootApplication
|
@SpringBootApplication
|
||||||
@EnableEurekaClient
|
@EnableEurekaClient
|
||||||
public class BookServiceApplication {
|
public class BookServiceApplication {
|
||||||
|
|
||||||
|
@Autowired
|
||||||
|
private EurekaClient eurekaClient;
|
||||||
|
@Autowired
|
||||||
|
private SpanMetricReporter spanMetricReporter;
|
||||||
|
@Autowired
|
||||||
|
private ZipkinProperties zipkinProperties;
|
||||||
|
@Value("${spring.sleuth.web.skipPattern}")
|
||||||
|
private String skipPattern;
|
||||||
|
|
||||||
public static void main(String[] args) {
|
public static void main(String[] args) {
|
||||||
SpringApplication.run(BookServiceApplication.class, args);
|
SpringApplication.run(BookServiceApplication.class, args);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Bean
|
||||||
|
public ZipkinSpanReporter makeZipkinSpanReporter() {
|
||||||
|
return new ZipkinSpanReporter() {
|
||||||
|
private HttpZipkinSpanReporter delegate;
|
||||||
|
private String baseUrl;
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void report(Span span) {
|
||||||
|
InstanceInfo instance = eurekaClient.getNextServerFromEureka("zipkin", false);
|
||||||
|
if (!(baseUrl != null && instance.getHomePageUrl().equals(baseUrl))) {
|
||||||
|
baseUrl = instance.getHomePageUrl();
|
||||||
|
delegate = new HttpZipkinSpanReporter(baseUrl, zipkinProperties.getFlushInterval(), zipkinProperties.getCompression().isEnabled(), spanMetricReporter);
|
||||||
|
if (!span.name.matches(skipPattern)) delegate.report(span);
|
||||||
|
}
|
||||||
|
if (!span.name.matches(skipPattern)) delegate.report(span);
|
||||||
|
}
|
||||||
|
};
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,32 +0,0 @@
|
||||||
package com.baeldung.spring.cloud.bootstrap.svcbook;
|
|
||||||
|
|
||||||
import com.netflix.appinfo.InstanceInfo;
|
|
||||||
import com.netflix.discovery.EurekaClient;
|
|
||||||
import org.springframework.beans.factory.annotation.Autowired;
|
|
||||||
import org.springframework.beans.factory.annotation.Value;
|
|
||||||
import org.springframework.cloud.sleuth.metric.SpanMetricReporter;
|
|
||||||
import org.springframework.cloud.sleuth.zipkin.HttpZipkinSpanReporter;
|
|
||||||
import org.springframework.cloud.sleuth.zipkin.ZipkinProperties;
|
|
||||||
import org.springframework.cloud.sleuth.zipkin.ZipkinSpanReporter;
|
|
||||||
import org.springframework.context.annotation.Configuration;
|
|
||||||
import zipkin.Span;
|
|
||||||
|
|
||||||
@Configuration
|
|
||||||
public class EurekaZipkinSpanReporter implements ZipkinSpanReporter {
|
|
||||||
|
|
||||||
@Autowired
|
|
||||||
private EurekaClient eurekaClient;
|
|
||||||
@Autowired
|
|
||||||
private SpanMetricReporter spanMetricReporter;
|
|
||||||
@Autowired
|
|
||||||
private ZipkinProperties zipkinProperties;
|
|
||||||
@Value("${spring.sleuth.web.skipPattern}")
|
|
||||||
private String skipPattern;
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public void report(Span span) {
|
|
||||||
InstanceInfo instance = eurekaClient.getNextServerFromEureka("zipkin", false);
|
|
||||||
HttpZipkinSpanReporter reporter = new HttpZipkinSpanReporter(instance.getHomePageUrl(), zipkinProperties.getFlushInterval(), zipkinProperties.getCompression().isEnabled(), spanMetricReporter);
|
|
||||||
if (!span.name.matches(skipPattern)) reporter.report(span);
|
|
||||||
}
|
|
||||||
}
|
|
|
@ -7,4 +7,5 @@ spring.cloud.config.password=configPassword
|
||||||
eureka.client.serviceUrl.defaultZone=http://discUser:discPassword@localhost:8082/eureka/
|
eureka.client.serviceUrl.defaultZone=http://discUser:discPassword@localhost:8082/eureka/
|
||||||
|
|
||||||
spring.sleuth.sampler.percentage=1.0
|
spring.sleuth.sampler.percentage=1.0
|
||||||
spring.sleuth.web.skipPattern=(^cleanup.*)
|
spring.sleuth.web.skipPattern=(^cleanup.*)
|
||||||
|
spring.zipkin.locator.discovery.enabled=true
|
|
@ -1,32 +0,0 @@
|
||||||
package com.baeldung.spring.cloud.bootstrap.svcrating;
|
|
||||||
|
|
||||||
import com.netflix.appinfo.InstanceInfo;
|
|
||||||
import com.netflix.discovery.EurekaClient;
|
|
||||||
import org.springframework.beans.factory.annotation.Autowired;
|
|
||||||
import org.springframework.beans.factory.annotation.Value;
|
|
||||||
import org.springframework.cloud.sleuth.metric.SpanMetricReporter;
|
|
||||||
import org.springframework.cloud.sleuth.zipkin.HttpZipkinSpanReporter;
|
|
||||||
import org.springframework.cloud.sleuth.zipkin.ZipkinProperties;
|
|
||||||
import org.springframework.cloud.sleuth.zipkin.ZipkinSpanReporter;
|
|
||||||
import org.springframework.context.annotation.Configuration;
|
|
||||||
import zipkin.Span;
|
|
||||||
|
|
||||||
@Configuration
|
|
||||||
public class EurekaZipkinSpanReporter implements ZipkinSpanReporter {
|
|
||||||
|
|
||||||
@Autowired
|
|
||||||
private EurekaClient eurekaClient;
|
|
||||||
@Autowired
|
|
||||||
private SpanMetricReporter spanMetricReporter;
|
|
||||||
@Autowired
|
|
||||||
private ZipkinProperties zipkinProperties;
|
|
||||||
@Value("${spring.sleuth.web.skipPattern}")
|
|
||||||
private String skipPattern;
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public void report(Span span) {
|
|
||||||
InstanceInfo instance = eurekaClient.getNextServerFromEureka("zipkin", false);
|
|
||||||
HttpZipkinSpanReporter reporter = new HttpZipkinSpanReporter(instance.getHomePageUrl(), zipkinProperties.getFlushInterval(), zipkinProperties.getCompression().isEnabled(), spanMetricReporter);
|
|
||||||
if (!span.name.matches(skipPattern)) reporter.report(span);
|
|
||||||
}
|
|
||||||
}
|
|
|
@ -1,13 +1,51 @@
|
||||||
package com.baeldung.spring.cloud.bootstrap.svcrating;
|
package com.baeldung.spring.cloud.bootstrap.svcrating;
|
||||||
|
|
||||||
|
import com.netflix.appinfo.InstanceInfo;
|
||||||
|
import com.netflix.discovery.EurekaClient;
|
||||||
|
import org.springframework.beans.factory.annotation.Autowired;
|
||||||
|
import org.springframework.beans.factory.annotation.Value;
|
||||||
import org.springframework.boot.SpringApplication;
|
import org.springframework.boot.SpringApplication;
|
||||||
import org.springframework.boot.autoconfigure.SpringBootApplication;
|
import org.springframework.boot.autoconfigure.SpringBootApplication;
|
||||||
import org.springframework.cloud.netflix.eureka.EnableEurekaClient;
|
import org.springframework.cloud.netflix.eureka.EnableEurekaClient;
|
||||||
|
import org.springframework.cloud.sleuth.metric.SpanMetricReporter;
|
||||||
|
import org.springframework.cloud.sleuth.zipkin.HttpZipkinSpanReporter;
|
||||||
|
import org.springframework.cloud.sleuth.zipkin.ZipkinProperties;
|
||||||
|
import org.springframework.cloud.sleuth.zipkin.ZipkinSpanReporter;
|
||||||
|
import org.springframework.context.annotation.Bean;
|
||||||
|
import zipkin.Span;
|
||||||
|
|
||||||
@SpringBootApplication
|
@SpringBootApplication
|
||||||
@EnableEurekaClient
|
@EnableEurekaClient
|
||||||
public class RatingServiceApplication {
|
public class RatingServiceApplication {
|
||||||
|
@Autowired
|
||||||
|
private EurekaClient eurekaClient;
|
||||||
|
@Autowired
|
||||||
|
private SpanMetricReporter spanMetricReporter;
|
||||||
|
@Autowired
|
||||||
|
private ZipkinProperties zipkinProperties;
|
||||||
|
@Value("${spring.sleuth.web.skipPattern}")
|
||||||
|
private String skipPattern;
|
||||||
|
|
||||||
public static void main(String[] args) {
|
public static void main(String[] args) {
|
||||||
SpringApplication.run(RatingServiceApplication.class, args);
|
SpringApplication.run(RatingServiceApplication.class, args);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Bean
|
||||||
|
public ZipkinSpanReporter makeZipkinSpanReporter() {
|
||||||
|
return new ZipkinSpanReporter() {
|
||||||
|
private HttpZipkinSpanReporter delegate;
|
||||||
|
private String baseUrl;
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void report(Span span) {
|
||||||
|
InstanceInfo instance = eurekaClient.getNextServerFromEureka("zipkin", false);
|
||||||
|
if (!(baseUrl != null && instance.getHomePageUrl().equals(baseUrl))) {
|
||||||
|
baseUrl = instance.getHomePageUrl();
|
||||||
|
delegate = new HttpZipkinSpanReporter(baseUrl, zipkinProperties.getFlushInterval(), zipkinProperties.getCompression().isEnabled(), spanMetricReporter);
|
||||||
|
if (!span.name.matches(skipPattern)) delegate.report(span);
|
||||||
|
}
|
||||||
|
if (!span.name.matches(skipPattern)) delegate.report(span);
|
||||||
|
}
|
||||||
|
};
|
||||||
|
}
|
||||||
}
|
}
|
Loading…
Reference in New Issue