Zipkin Implemented
parent
965bfadee8
commit
3dc4b60387
|
@ -1 +1,2 @@
|
||||||
/.metadata/
|
/.metadata/
|
||||||
|
zipkin-server-2.23.18-exec.jar
|
|
@ -53,6 +53,14 @@
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.springframework.cloud</groupId>
|
<groupId>org.springframework.cloud</groupId>
|
||||||
<artifactId>spring-cloud-starter-netflix-eureka-client</artifactId>
|
<artifactId>spring-cloud-starter-netflix-eureka-client</artifactId>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.springframework.cloud</groupId>
|
||||||
|
<artifactId>spring-cloud-sleuth-zipkin</artifactId>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.springframework.cloud</groupId>
|
||||||
|
<artifactId>spring-cloud-starter-sleuth</artifactId>
|
||||||
</dependency>
|
</dependency>
|
||||||
</dependencies>
|
</dependencies>
|
||||||
|
|
||||||
|
|
|
@ -54,6 +54,14 @@
|
||||||
<groupId>org.springframework.cloud</groupId>
|
<groupId>org.springframework.cloud</groupId>
|
||||||
<artifactId>spring-cloud-starter-netflix-eureka-client</artifactId>
|
<artifactId>spring-cloud-starter-netflix-eureka-client</artifactId>
|
||||||
</dependency>
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.springframework.cloud</groupId>
|
||||||
|
<artifactId>spring-cloud-sleuth-zipkin</artifactId>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.springframework.cloud</groupId>
|
||||||
|
<artifactId>spring-cloud-starter-sleuth</artifactId>
|
||||||
|
</dependency>
|
||||||
</dependencies>
|
</dependencies>
|
||||||
|
|
||||||
<dependencyManagement>
|
<dependencyManagement>
|
||||||
|
|
|
@ -8,3 +8,6 @@ eureka:
|
||||||
default-zone: http://localhost:8761/eureka
|
default-zone: http://localhost:8761/eureka
|
||||||
instance:
|
instance:
|
||||||
instance-id: ${spring.application.name}:${spring.application.instance_id:${random.value}}
|
instance-id: ${spring.application.name}:${spring.application.instance_id:${random.value}}
|
||||||
|
spring:
|
||||||
|
application:
|
||||||
|
zipkin: http://localhost:9411
|
|
@ -8,3 +8,6 @@ eureka:
|
||||||
default-zone: http://localhost:8761/eureka
|
default-zone: http://localhost:8761/eureka
|
||||||
instance:
|
instance:
|
||||||
instance-id: ${spring.application.name}:${spring.application.instance_id:${random.value}}
|
instance-id: ${spring.application.name}:${spring.application.instance_id:${random.value}}
|
||||||
|
spring:
|
||||||
|
application:
|
||||||
|
zipkin: http://localhost:9411
|
|
@ -37,3 +37,6 @@ resilience4j.circuitbreaker:
|
||||||
waitDurationInOpenState: 5s
|
waitDurationInOpenState: 5s
|
||||||
failureRateThreshold: 50
|
failureRateThreshold: 50
|
||||||
eventConsumerBufferSize: 10
|
eventConsumerBufferSize: 10
|
||||||
|
spring:
|
||||||
|
application:
|
||||||
|
zipkin: http://localhost:9411
|
|
@ -5,7 +5,7 @@ spring:
|
||||||
config:
|
config:
|
||||||
server:
|
server:
|
||||||
git:
|
git:
|
||||||
defaultLabel: circuit-breaker
|
defaultLabel: zipkin-sleuth
|
||||||
uri: https://git.gzcode.xyz/atancito/MicroservicesTutorial
|
uri: https://git.gzcode.xyz/atancito/MicroservicesTutorial
|
||||||
searchPaths: config-data
|
searchPaths: config-data
|
||||||
application:
|
application:
|
||||||
|
|
|
@ -70,7 +70,14 @@
|
||||||
<artifactId>spring-boot-starter-aop</artifactId>
|
<artifactId>spring-boot-starter-aop</artifactId>
|
||||||
<version>2.7.4</version>
|
<version>2.7.4</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.springframework.cloud</groupId>
|
||||||
|
<artifactId>spring-cloud-sleuth-zipkin</artifactId>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.springframework.cloud</groupId>
|
||||||
|
<artifactId>spring-cloud-starter-sleuth</artifactId>
|
||||||
|
</dependency>
|
||||||
</dependencies>
|
</dependencies>
|
||||||
<dependencyManagement>
|
<dependencyManagement>
|
||||||
<dependencies>
|
<dependencies>
|
||||||
|
|
Loading…
Reference in New Issue