codecentric / spring-boot-admin

Admin UI for administration of spring boot applications
Apache License 2.0
12.37k stars 3.08k forks source link

SpringBootAdmin Not Showing All Clients in Admin Dashboard #913

Closed sandyjohn closed 6 years ago

sandyjohn commented 6 years ago

I am using spring boot admin module for monitoring the Spring-Boot MicroServices Application. Admin and client applications are registered successfully but in admin dashboard I cannot able to see all the MicroServices at a time. Only one Spring-Boot Client Application was visible and after few refresh, other application was loading same like it goes on. How to see all the Client Applications at a time in springbootadmin dashboard?

joshiste commented 6 years ago

Sorry I don't understand your problem. Could you give some more details (and maybe screenshots)

sandyjohn commented 6 years ago

I have added springboot admin to monitor the microservices, There are 5 client springboot applications which is running on the same server where springboot admin was running. In Dashboard i can able to see either any one of the application out of the 5 client applications. But whereas i expect to see all the 5 Applications. image

joshiste commented 6 years ago

Did you check the clients' logs if they registered successfully? There should be a single warning right after the application start if registration has failed.

sandyjohn commented 6 years ago

Registeration was successful for all the 5 applications. And when i refresh the browser other client application will load by replacing the previous application loaded which means only one applications loading at one time. After refresh other application is loaded, please see the image below image

joshiste commented 6 years ago

Do they all register with the same healthcheck url?

sandyjohn commented 6 years ago

yes, healthurl was same for all the client applications.

joshiste commented 6 years ago

applications are identified by the health url so the overwrite each others registration

sandyjohn commented 6 years ago

Thanks a lot...I have changed the health-url for all client apps.Now its working fine. Thanks a lot @joshiste