This includes better dependency aggregation than before. For example, you no longer need mysql to view the dependency graph, as the in-memory server supports aggregation now. Also, if you log "ca" on a root span, the associated service will show on the dependency graph on the far left. This allows you to show uninstrumented clients of note. Similarly, if you log "sa" on a leaf node, the destination will show on the far right. You'd use "sa" for uninstrumented services like databases, auth servers or cloud apis. Note: 0.5.2 uses spring boot 1.3.2
76 lines
2.3 KiB
XML
76 lines
2.3 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<project xmlns="http://maven.apache.org/POM/4.0.0"
|
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<artifactId>spring-cloud-sleuth-samples</artifactId>
|
|
<packaging>pom</packaging>
|
|
<name>Spring Cloud Sleuth Samples</name>
|
|
<description>Spring Cloud Sleuth Samples</description>
|
|
|
|
<parent>
|
|
<groupId>org.springframework.cloud</groupId>
|
|
<artifactId>spring-cloud-sleuth</artifactId>
|
|
<version>1.0.0.BUILD-SNAPSHOT</version>
|
|
<relativePath>..</relativePath>
|
|
</parent>
|
|
|
|
<modules>
|
|
<module>spring-cloud-sleuth-sample</module>
|
|
<module>spring-cloud-sleuth-sample-test-core</module>
|
|
<module>spring-cloud-sleuth-sample-messaging</module>
|
|
<module>spring-cloud-sleuth-sample-websocket</module>
|
|
<module>spring-cloud-sleuth-sample-ribbon</module>
|
|
<module>spring-cloud-sleuth-sample-zipkin</module>
|
|
<module>spring-cloud-sleuth-sample-stream</module>
|
|
<module>spring-cloud-sleuth-sample-zipkin-stream</module>
|
|
</modules>
|
|
|
|
<build>
|
|
<pluginManagement>
|
|
<plugins>
|
|
<plugin>
|
|
<!--skip deploy (this is just a test module) -->
|
|
<artifactId>maven-deploy-plugin</artifactId>
|
|
<configuration>
|
|
<skip>true</skip>
|
|
</configuration>
|
|
</plugin>
|
|
</plugins>
|
|
</pluginManagement>
|
|
</build>
|
|
|
|
<properties>
|
|
<testcontainers.jackson.version>2.1.0</testcontainers.jackson.version>
|
|
</properties>
|
|
|
|
<dependencyManagement>
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>org.springframework.cloud</groupId>
|
|
<artifactId>spring-cloud-sleuth-dependencies</artifactId>
|
|
<version>${project.version}</version>
|
|
<type>pom</type>
|
|
<scope>import</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.springframework.cloud</groupId>
|
|
<artifactId>spring-cloud-sleuth-sample-test-core</artifactId>
|
|
<version>${project.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>io.zipkin.java</groupId>
|
|
<artifactId>zipkin</artifactId>
|
|
<version>0.5.2</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>io.zipkin.java</groupId>
|
|
<artifactId>zipkin-server</artifactId>
|
|
<version>0.5.2</version>
|
|
</dependency>
|
|
</dependencies>
|
|
</dependencyManagement>
|
|
|
|
</project>
|