We have a service which uses a custom context path. In order to correctly register our Service on Eureka Server, we've set the following:
eureka.instance.statusPageUrl=http://xxx/custom/info
eureka.instance.healthCheckUrl=http://xxx/custom/health
eureka.instance.homePageUrl=http://xxx/custom/
This is working well, our application gets registered. However, although we have set the info.version
information, it doesn't get displayed on the Spring Boot Admin
homepage. For our application where we don't have a custom context path, it's working:
Any idea which property(ies) is/are eventually missing?