You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Spring Cloud Sleuth provides Spring Boot auto-configuration for distributed tracing.
15
+
Spring Cloud Sleuth provides Spring Boot auto-configuration for OpenTelemetry based distributed tracing.
16
16
17
17
Sleuth configures everything you need to get started.
18
18
This includes where trace data (spans) are reported to, how many traces to keep (sampling), if remote fields (baggage) are sent, and which libraries are traced.
19
19
20
20
=== Quick Start
21
21
22
22
Add Spring Cloud Sleuth to the classpath of a Spring Boot application (together with a Tracer implementation) and you will see trace IDs in logs.
@@ -61,11 +54,11 @@ Example of Sleuth with Brave tracer:
61
54
</exclusion>
62
55
</exclusions>
63
56
</dependency>
57
+
<!-- This dependency adds OTel support -->
64
58
<dependency>
65
59
<groupId>org.springframework.cloud</groupId>
66
60
<artifactId>spring-cloud-sleuth-otel</artifactId>
67
61
</dependency>
68
-
-->
69
62
</dependencies>
70
63
----
71
64
@@ -99,7 +92,7 @@ NOTE: Set `spring.application.name=myService` (for instance) to see the service
99
92
100
93
== Documentation
101
94
102
-
Please visit the https://docs.spring.io/spring-cloud-sleuth/docs/[documentation page] to read more about the project.
95
+
Please visit the https://docs.spring.io/spring-cloud-sleuth/docs/[Spring Cloud Sleuth documentation page] to read more about the Spring Cloud Sleuth project.
Spring Cloud Sleuth provides Spring Boot auto-configuration for distributed tracing.
8
+
Spring Cloud Sleuth provides Spring Boot auto-configuration for OpenTelemetry based distributed tracing.
9
9
10
10
Sleuth configures everything you need to get started.
11
11
This includes where trace data (spans) are reported to, how many traces to keep (sampling), if remote fields (baggage) are sent, and which libraries are traced.
12
12
13
13
=== Quick Start
14
14
15
15
Add Spring Cloud Sleuth to the classpath of a Spring Boot application (together with a Tracer implementation) and you will see trace IDs in logs.
@@ -54,11 +47,11 @@ Example of Sleuth with Brave tracer:
54
47
</exclusion>
55
48
</exclusions>
56
49
</dependency>
50
+
<!-- This dependency adds OTel support -->
57
51
<dependency>
58
52
<groupId>org.springframework.cloud</groupId>
59
53
<artifactId>spring-cloud-sleuth-otel</artifactId>
60
54
</dependency>
61
-
-->
62
55
</dependencies>
63
56
----
64
57
@@ -92,7 +85,7 @@ NOTE: Set `spring.application.name=myService` (for instance) to see the service
92
85
93
86
== Documentation
94
87
95
-
Please visit the https://docs.spring.io/spring-cloud-sleuth/docs/[documentation page] to read more about the project.
88
+
Please visit the https://docs.spring.io/spring-cloud-sleuth/docs/[Spring Cloud Sleuth documentation page] to read more about the Spring Cloud Sleuth project.
0 commit comments