|
@@ -11,6 +11,9 @@ spring:
|
|
|
max-lifetime: 1800000
|
|
|
connection-timeout: 30000
|
|
|
connection-test-query: select 1
|
|
|
+ boot:
|
|
|
+ admin:
|
|
|
+ context-path: /admin
|
|
|
|
|
|
|
|
|
|
|
@@ -25,12 +28,14 @@ eureka:
|
|
|
lease-renewal-interval-in-seconds: 15
|
|
|
lease-expiration-duration-in-seconds: 32
|
|
|
ip-address: 127.0.0.1
|
|
|
+ metadata-map:
|
|
|
+ startup: ${random.int}
|
|
|
client:
|
|
|
register-with-eureka: true
|
|
|
- fetch-registry: false
|
|
|
+ fetch-registry: true
|
|
|
service-url:
|
|
|
defaultZone: http://envir:envir@${eureka.instance.ip-address}:${server.port}/eureka/
|
|
|
- registry-fetch-interval-seconds: 60
|
|
|
+ registry-fetch-interval-seconds: 5
|
|
|
instance-info-replication-interval-seconds: 20
|
|
|
initial-instance-info-replication-interval-seconds: 45
|
|
|
eureka-server-read-timeout-seconds: 10
|
|
@@ -42,4 +47,9 @@ management:
|
|
|
endpoints:
|
|
|
web:
|
|
|
exposure:
|
|
|
- include: hearth,info,bus-refresh
|
|
|
+ include: '*'
|
|
|
+ endpoint:
|
|
|
+ health:
|
|
|
+ show-details: always
|
|
|
+
|
|
|
+
|