Spring Cloud Sleuth 2.2.3

Spring Cloud Sleuth implements a distributed tracing solution for Spring Cloud, borrowing heavily from Dapper, Zipkin and HTrace. For most users Sleuth should be invisible, and all your interactions with external systems should be instrumented automatically. You can capture data simply in logs, or by sending it to a remote collector service.
Features

A Span is the basic unit of work. For example, sending an RPC is a new span, as is sending a response to an RPC. Span’s are identified by a unique 64-bit ID for the span and another 64-bit ID for the trace the span is a part of. Spans also have other data, such as descriptions, key-value annotations, the ID of the span that caused them, and process ID’s (normally IP address). Spans are started and stopped, and they keep track of their timing information. Once you create a span, you must stop it at some point in the future. A set of spans forming a tree-like structure called a Trace. For example, if you are running a distributed big-data store, a trace might be formed by a put request.

Spring Cloud Sleuth features:

Adds trace and span ids to the Slf4J MDC, so you can extract all the logs from a given trace or span in a log aggregator.

Provides an abstraction over common distributed tracing data models: traces, spans (forming a DAG), annotations, key-value annotations. Loosely based on HTrace, but Zipkin (Dapper) compatible.

Instruments common ingress and egress points from Spring applications (servlet filter, rest template, scheduled actions, message channels, zuul filters, feign client).

If spring-cloud-sleuth-zipkin is available then the app will generate and collect Zipkin-compatible traces via HTTP. By default it sends them to a Zipkin collector service on localhost (port 9411). Configure the location of the service using spring.zipkin.baseUrl.

Spring Boot Config

Add Sleuth to your classpath:

Maven

org.springframework.cloud spring-cloud-sleuth ${spring-cloud-sleuth.version} pom import org.springframework.cloud spring-cloud-starter-sleuth

Gradle

buildscript {
dependencies {
classpath “io.spring.gradle:dependency-management-plugin:0.5.2.RELEASE”
}
}

apply plugin: “io.spring.dependency-management”

dependencyManagement {
imports {
mavenBom “org.springframework.cloud:spring-cloud-sleuth:${springCloudSleuthVersion}”
}
}
dependencies {
compile ‘org.springframework.cloud:spring-cloud-starter-sleuth’
}

As long as Spring Cloud Sleuth is on the classpath any Spring Boot application will generate trace data:

@SpringBootApplication
@RestController
public class Application {

private static Logger log = LoggerFactory.getLogger(DemoController.class);

@RequestMapping("/")
public String home() {
log.info(“Handling home”);
return “Hello World”;
}

public static void main(String[] args) {
SpringApplication.run(Application.class, args);
}

}

Run this app and then hit the home page. You will see traceId and spanId populated in the logs. If this app calls out to another one (e.g. with RestTemplate) it will send the trace data in headers and if the receiver is another Sleuth app you will see the trace continue there.

Instead of logging the request in the handler explicitly, you could set logging.level.org.springframework.web.servlet.DispatcherServlet=DEBUG

If you use Zipkin (up till 2.1.x), configure the probability of spans exported by setting spring.sleuth.sampler.probability (default: 0.1, which is 10 percent). Otherwise, you might think that Sleuth is not working because it omits some spans. Starting from 2.2.0, Sleuth will default to rate limited sampler. That means that it will sample up to 1000 transactions per second.

Set spring.application.name=bar (for instance) to see the service name as well as the trace and span ids.

Quick start
Bootstrap your application with Spring Initializr.

发布了0 篇原创文章 · 获赞 0 · 访问量 1540

猜你喜欢

转载自blog.csdn.net/blog_programb/article/details/104686706