Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

How to realize Spring Cloud Service Link tracking

2025-04-05 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Internet Technology >

Share

Shulou(Shulou.com)06/01 Report--

This article mainly explains "how to achieve Spring Cloud service link tracking". The content of the article is simple and clear, and it is easy to learn and understand. Please follow the editor's train of thought to study and learn "how to achieve Spring Cloud service link tracking".

I. preparatory work

Start the kafka service and start the previous erurekaserver, config-server

Second, install zipkinServer

Download address:

Https://dl.bintray.com/openzipkin/maven/io/zipkin/java/zipkin-server/

After downloading the jar package, you can run it:

Java-jar zipkin-server-2.9.4-exec.jar

3. Modify the project eurekaclient1

1. Modify bootstrap.yml and add spring.zipkin.base-url: http://localhost:9411, as follows:

Server: port: 8762spring: application: name: eurekaclient cloud: config: label: master profile: dev discovery: enabled: true service-id: config-server bus: refresh: enabled: true trace: enabled: true kafka: bootstrap-servers: 127.0.0.1:9092 zipkin: base-url: http://localhost:9411eureka: instance: instance-id : eurekaclient1 appname: ${spring.application.name} client: serviceUrl: defaultZone: http://localhost:8761/eureka/management: endpoints: web: exposure: include:'* 'security: enabled: false

2. Modify pom.xml and add

Org.springframework.cloud spring-cloud-starter-zipkin

3. Start the project eurekaclient1

4. Modify the project service-ribbon

1. Modify application.yml and add spring.zipkin.base-url: http://localhost:9411, as follows:

Server: port: 8764spring: application: name: service-ribbon zipkin: base-url: http://localhost:9411eureka: client: serviceUrl: defaultZone: http://localhost:8761/eureka/

2. Modify pom.xml and add:

Org.springframework.cloud spring-cloud-starter-zipkin

3. Start the project

Fifth, test link tracking

1. Visit http://localhost:9411/zipkin/

2. Access http://localhost:8764/hello (refresh several times more)

3. Visit http://localhost:9411/zipkin/

Click Dependencies

Thank you for reading, the above is the content of "how to achieve Spring Cloud service link tracking". After the study of this article, I believe you have a deeper understanding of how to achieve Spring Cloud service link tracking, and the specific use needs to be verified in practice. Here is, the editor will push for you more related knowledge points of the article, welcome to follow!

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Internet Technology

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report