为了在 scdf 中使用 zipkin,我需要添加哪些依赖项?
In order to use zipkin in scdf, what dependencies do I need to add?
我想在我的 scdf(Spring Cloud Dataflow) applications.According 中使用 zipkin 到 scdf documentation 我只需要添加以下依赖项,并在 [=30 中添加设置=], 我可以在 scdf 中使用 zipkin.
pom.xml
<dependencies>
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-starter-sleuth</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-actuator</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-sleuth-zipkin</artifactId>
</dependency>
<dependency>
<groupId>io.micrometer</groupId>
<artifactId>micrometer-registry-wavefront</artifactId>
</dependency>
</dependencies>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-dependencies</artifactId>
<version>${release.train.version}</version>
<type>pom</type>
<scope>import</scope>
</dependency>
</dependencies>
</dependencyManagement>
applicaion.properties
spring.zipkin.enabled=true
但实际上并没有得到预期的结果
我没有关于源处理器接收器内部结构的任何信息,谁能解释一下?我还需要添加哪些依赖项以及需要设置哪些配置?
您可能需要遵循专门构建的 developer recipe 以帮助完成检测和捕获事件流应用程序的分布式跟踪特征所涉及的步骤。
我已经知道为什么了,需要在application.properties文件中添加如下配置
- spring.sleuth.sampler.probability=1.0
我将关闭此问题,答案将作为备忘。
我想在我的 scdf(Spring Cloud Dataflow) applications.According 中使用 zipkin 到 scdf documentation 我只需要添加以下依赖项,并在 [=30 中添加设置=], 我可以在 scdf 中使用 zipkin.
pom.xml
<dependencies>
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-starter-sleuth</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-actuator</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-sleuth-zipkin</artifactId>
</dependency>
<dependency>
<groupId>io.micrometer</groupId>
<artifactId>micrometer-registry-wavefront</artifactId>
</dependency>
</dependencies>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-dependencies</artifactId>
<version>${release.train.version}</version>
<type>pom</type>
<scope>import</scope>
</dependency>
</dependencies>
</dependencyManagement>
applicaion.properties
spring.zipkin.enabled=true
但实际上并没有得到预期的结果
我没有关于源处理器接收器内部结构的任何信息,谁能解释一下?我还需要添加哪些依赖项以及需要设置哪些配置?
您可能需要遵循专门构建的 developer recipe 以帮助完成检测和捕获事件流应用程序的分布式跟踪特征所涉及的步骤。
我已经知道为什么了,需要在application.properties文件中添加如下配置
- spring.sleuth.sampler.probability=1.0
我将关闭此问题,答案将作为备忘。