This is an automated email from the ASF dual-hosted git repository. songxiaosheng pushed a commit to branch fix/zipkin_tracing in repository https://gitbox.apache.org/repos/asf/dubbo.git
commit 27f8250a15d082763afe4d2c7d8519095780e3b5 Author: Mac <[email protected]> AuthorDate: Tue Mar 11 22:50:50 2025 +0800 tracing add zipkin dep default --- dubbo-dependencies-bom/pom.xml | 6 ++++++ .../dubbo-tracing-brave-zipkin-spring-boot-starter/pom.xml | 4 ++++ 2 files changed, 10 insertions(+) diff --git a/dubbo-dependencies-bom/pom.xml b/dubbo-dependencies-bom/pom.xml index c92b964050..762db00a12 100644 --- a/dubbo-dependencies-bom/pom.xml +++ b/dubbo-dependencies-bom/pom.xml @@ -125,6 +125,7 @@ <micrometer.version>1.14.4</micrometer.version> <opentelemetry.version>1.48.0</opentelemetry.version> <zipkin-reporter.version>3.5.0</zipkin-reporter.version> + <zipkin.version>3.5.0</zipkin.version> <micrometer-tracing.version>1.4.3</micrometer-tracing.version> <t_digest.version>3.3</t_digest.version> <prometheus_client.version>0.16.0</prometheus_client.version> @@ -245,6 +246,11 @@ <type>pom</type> <scope>import</scope> </dependency> + <dependency> + <groupId>io.zipkin.zipkin2</groupId> + <artifactId>zipkin</artifactId> + <version>${zipkin.version}</version> + </dependency> <dependency> <groupId>io.prometheus</groupId> <artifactId>simpleclient_bom</artifactId> diff --git a/dubbo-spring-boot-project/dubbo-spring-boot-starters/dubbo-tracing-brave-zipkin-spring-boot-starter/pom.xml b/dubbo-spring-boot-project/dubbo-spring-boot-starters/dubbo-tracing-brave-zipkin-spring-boot-starter/pom.xml index f2f1d3a9cd..6f396688d4 100644 --- a/dubbo-spring-boot-project/dubbo-spring-boot-starters/dubbo-tracing-brave-zipkin-spring-boot-starter/pom.xml +++ b/dubbo-spring-boot-project/dubbo-spring-boot-starters/dubbo-tracing-brave-zipkin-spring-boot-starter/pom.xml @@ -42,6 +42,10 @@ <groupId>io.zipkin.reporter2</groupId> <artifactId>zipkin-reporter-brave</artifactId> </dependency> + <dependency> + <groupId>io.zipkin.zipkin2</groupId> + <artifactId>zipkin</artifactId> + </dependency> </dependencies> </project>
