Skip to content

Commit

Permalink
refactor($Zipkin): service-registry and spring-boot-admin are client …
Browse files Browse the repository at this point in the history
…to zipkin

[skip ci]
  • Loading branch information
Johnny Miller (锺俊) committed Jan 21, 2021
1 parent ec01c8c commit f99e2ca
Show file tree
Hide file tree
Showing 10 changed files with 20 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
spring:
devtools:
add-properties: true
zipkin:
base-url: http://maf.zipkin.development:9411
datasource:
url: jdbc:mysql://maf.mysql.development:3306/muscle_and_fitness?useSSL=true&useUnicode=true
username: root
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
spring:
devtools:
add-properties: true
zipkin:
base-url: http://localhost:9411
datasource:
url: jdbc:mysql://localhost:3306/muscle_and_fitness?useSSL=true&useUnicode=true
username: root
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
spring:
devtools:
add-properties: false
zipkin:
base-url: http://maf.zipkin.production:9411
datasource:
url: jdbc:mysql://maf.mysql.production:3306/muscle_and_fitness?useSSL=true&useUnicode=true
username: root
Expand Down
2 changes: 2 additions & 0 deletions service-registry/src/main/resources/application-stage.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
spring:
devtools:
add-properties: false
zipkin:
base-url: http://maf.zipkin.stage:9411
datasource:
url: jdbc:mysql://maf.mysql.stage:3306/muscle_and_fitness?useSSL=true&useUnicode=true
username: root
Expand Down
2 changes: 2 additions & 0 deletions service-registry/src/main/resources/application-test.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
spring:
devtools:
add-properties: false
zipkin:
base-url: http://maf.zipkin.test:9411
datasource:
url: jdbc:mysql://maf.mysql.test:3306/muscle_and_fitness?useSSL=true&useUnicode=true
username: root
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
spring:
devtools:
add-properties: true
zipkin:
base-url: http://maf.zipkin.development:9411
datasource:
url: jdbc:mysql://maf.mysql.development:3306/muscle_and_fitness?useSSL=true&useUnicode=true
username: root
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
spring:
devtools:
add-properties: true
zipkin:
base-url: http://localhost:9411
datasource:
url: jdbc:mysql://localhost:3306/muscle_and_fitness?useSSL=true&useUnicode=true
username: root
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
spring:
devtools:
add-properties: false
zipkin:
base-url: http://maf.zipkin.production:9411
datasource:
url: jdbc:mysql://maf.mysql.production:3306/muscle_and_fitness?useSSL=true&useUnicode=true
username: root
Expand Down
2 changes: 2 additions & 0 deletions spring-boot-admin/src/main/resources/application-stage.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
spring:
devtools:
add-properties: false
zipkin:
base-url: http://maf.zipkin.stage:9411
datasource:
url: jdbc:mysql://maf.mysql.stage:3306/muscle_and_fitness?useSSL=true&useUnicode=true
username: root
Expand Down
2 changes: 2 additions & 0 deletions spring-boot-admin/src/main/resources/application-test.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
spring:
devtools:
add-properties: false
zipkin:
base-url: http://maf.zipkin.test:9411
datasource:
url: jdbc:mysql://maf.mysql.test:3306/muscle_and_fitness?useSSL=true&useUnicode=true
username: root
Expand Down

0 comments on commit f99e2ca

Please sign in to comment.