This is an automated email from the ASF dual-hosted git repository.
albumenj pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/dubbo-website.git
The following commit(s) were added to refs/heads/master by this push:
new 4cbb139e27 docs: add error code 0-29 (#2673)
4cbb139e27 is described below
commit 4cbb139e27002cd9d7679711f32e898777e19986
Author: conghuhu <[email protected]>
AuthorDate: Mon Jun 5 20:39:58 2023 +0800
docs: add error code 0-29 (#2673)
Co-authored-by: shiyi <[email protected]>
---
.../zh-cn/overview/mannual/java-sdk/faq/0/29.md | 38 ++++++++++++++++++++++
1 file changed, 38 insertions(+)
diff --git a/content/zh-cn/overview/mannual/java-sdk/faq/0/29.md
b/content/zh-cn/overview/mannual/java-sdk/faq/0/29.md
new file mode 100644
index 0000000000..6fcf5d8c1e
--- /dev/null
+++ b/content/zh-cn/overview/mannual/java-sdk/faq/0/29.md
@@ -0,0 +1,38 @@
+---
+aliases:
+ - /zh/docs3-v2/java-sdk/faq/0/29/
+ - /zh-cn/docs3-v2/java-sdk/faq/0/29/
+description: 0-29 - 未找到Tracer依赖
+linkTitle: 0-29 - 未找到Tracer依赖
+title: 0-29 - 未找到Tracer依赖
+type: docs
+weight: 29
+---
+
+### 可能的原因
+
+你已在配置文件中开启了tracing,但未找到Tracer依赖。
+
+目前Tracer支持两种,OpenTelemetry和Brave。
+
+### 排查和解决步骤
+
+选择一个Tracer依赖到你的项目中:
+
+```xml
+
+<dependency>
+ <groupId>io.micrometer</groupId>
+ <artifactId>micrometer-tracing-bridge-otel</artifactId>
+ <optional>true</optional>
+</dependency>
+```
+
+```xml
+
+<dependency>
+ <groupId>io.micrometer</groupId>
+ <artifactId>micrometer-tracing-bridge-brave</artifactId>
+ <optional>true</optional>
+</dependency>
+```
\ No newline at end of file