gpt4 book ai didi

java - 使用适用于 Java 的 Azure Monitor OpenTelemetry Exporter 客户端库自动导出 Spring Cloud Sleuth 跨度

转载 作者:行者123 更新时间:2023-12-05 06:55:20 25 4
gpt4 key购买 nike

我正在尝试使用 Azure Monitor OpenTelemetry Exporter client library for Java将所有跟踪/跨度从 Spring Cloud Sleuth 导出到 Azure Monitor。在最近的依赖版本更新后,这种集成似乎只适用于最新版本的 Spring Cloud Sleuth。

但是,我不想手动使用 azureMonitorExporter.export(spanData),而是希望通过为 Azure 导出器添加配置来自动导出整个应用程序的所有跟踪/跨度。然后可以轻松地将其添加到新项目中。

我没有太多使用 Spring/Sleuth/OpenTelemetry 的经验,但 AzureMonitorExporter 实现了 SpanExporter,所以我认为一种选择是创建一个包含以下内容的配置类。

@Bean
public SpanExporter exporter() {
return new AzureMonitorExporterBuilder()
.instrumentationKey("{KEY}")
.buildExporter();
};

然后它可以在主类中使用:

@Autowired
SpanExporter exporter;

但是我不确定这是否是正确的方法或如何从这里继续以实际让导出器开始自动将跟踪/跨度导出到 Azure 监视器。

我的 pom.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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>2.4.2-SNAPSHOT</version>
<relativePath/> <!-- lookup parent from repository -->
</parent>
<groupId>com.example</groupId>
<artifactId>trace-demo-5-updated</artifactId>
<version>0.0.1-SNAPSHOT</version>
<name>trace-demo-5-updated</name>
<description>Demo project for Spring Boot</description>

<properties>
<java.version>11</java.version>
<spring-cloud.version>2020.0.0-SNAPSHOT</spring-cloud.version>
</properties>

<dependencies>
<!-- Sleuth with Brave tracer implementation -->
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-starter-sleuth</artifactId>

</dependency>

<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
<scope>test</scope>
</dependency>

<dependency>
<groupId>com.azure</groupId>
<artifactId>opentelemetry-exporters-azuremonitor</artifactId>
<version>1.0.0-beta.1</version>
</dependency>

<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web-services</artifactId>
</dependency>

<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-sleuth-otel</artifactId>
<version>3.0.0-M6</version>
</dependency>
</dependencies>

<dependencyManagement>
<dependencies>
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-dependencies</artifactId>
<version>${spring-cloud.version}</version>
<type>pom</type>
<scope>import</scope>
</dependency>
</dependencies>
</dependencyManagement>

<build>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
</plugin>
</plugins>
</build>

<repositories>
<repository>
<id>spring-milestones</id>
<name>Spring Milestones</name>
<url>https://repo.spring.io/milestone</url>
</repository>
<repository>
<id>spring-snapshots</id>
<name>Spring Snapshots</name>
<url>https://repo.spring.io/snapshot</url>
<snapshots>
<enabled>true</enabled>
</snapshots>
</repository>
</repositories>
<pluginRepositories>
<pluginRepository>
<id>spring-milestones</id>
<name>Spring Milestones</name>
<url>https://repo.spring.io/milestone</url>
</pluginRepository>
<pluginRepository>
<id>spring-snapshots</id>
<name>Spring Snapshots</name>
<url>https://repo.spring.io/snapshot</url>
<snapshots>
<enabled>true</enabled>
</snapshots>
</pluginRepository>
</pluginRepositories>

最佳答案

更新(2020-01-26):

有了今天的release Spring Cloud Sleuth OTel (spring-cloud-sleuth-otel:1.0.0-M3) 和 The OTel upgrade在 Azure SDK 中,您的原始问题应该会消失。

原始答案

(长话短说:最后一段)

Sleuth 3.0 Migration Guide可以在这里帮助你很多。 Sleuth 支持两个跟踪系统 Brave(默认)和 OpenTelemetry(孵化器)。

为了使用 OpenTelemetry,您需要删除 Brave(仅排除 spring-cloud-sleuth-brave)并添加 OpenTelemetry(spring-cloud-sleuth-otel-autoconfigurespring-cloud-sleuth-otel-dependencies)。请参阅我链接的文档。

执行此操作后,应使用您的SpanExporter,这里是pom.xml我根据你的创建。顺便说一句,添加一个示例项目(例如:在 GitHub 存储库中)可能对每个试图提供帮助的人都有很大帮助,这样他们就不需要自己创建一个。

不幸的是,这仍然行不通,你在启动时仍然会遇到这个异常:
引起:java.lang.ClassNotFoundException:io.opentelemetry.common.AttributeValue

这是因为opentelemetry-exporters-azuremonitor:1.0.0-beta.1依赖于 OpenTelemetry 0.8.0 而最新的 spring-cloud-sleuth-otel(1.0.0-M2,我们今天发布了它)正在使用最新的 OpenTelemetry (0.13.1) .此外,OpenTelemetry 在次要版本之间引入了重大更改,例如:AttributeValuewas removed in OpenTelemetry 0.9.1 .

自 Sleuth 3.0.0-M5 以来,Sleuth 支持 OpenTelemetry,当时 OpenTelemetry 版本是 0.10,因此没有可用的 Sleuth 版本支持与 opentelemetry-exporters-azuremonitor:1.0.0-一样旧的 OpenTelemetry 版本beta.1 需要。

因此解决方案是修复您的 pom.xmlopentelemetry-exporters-azuremonitor 以支持最新的 OpenTelemetry。

关于java - 使用适用于 Java 的 Azure Monitor OpenTelemetry Exporter 客户端库自动导出 Spring Cloud Sleuth 跨度,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/65407625/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com