Skip to content
This repository has been archived by the owner on Dec 5, 2023. It is now read-only.

Commit

Permalink
Ensure Zipkin is disabled by default
Browse files Browse the repository at this point in the history
Also note: We use `ZIPKIN_HOST` now, as `ZIPKIN` did not work same as in Go apps, so Java apps are gonna have to be different
  • Loading branch information
errordeveloper committed Nov 21, 2017
1 parent c3bc901 commit 479c23e
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/main/resources/application.properties
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
server.port=${port:8080}
spring.rabbitmq.host=rabbitmq
endpoints.health.enabled=false
spring.zipkin.baseUrl=http://${zipkin:zipkin}:9411/
spring.zipkin.baseUrl=http://${zipkin_host:zipkin}:9411/
spring.zipkin.enabled=${zipkin_enabled:false}
spring.sleuth.sampler.percentage=1.0
spring.application.name=shipping
# Disable actuator metrics endpoints
Expand Down

0 comments on commit 479c23e

Please sign in to comment.