Spring Boot Admin does not show any client applications in the control panel

I followed this tutorial for Spring Boot Admin, but when I run the admin application, I don’t see any Spring client download applications for monitoring. I checked that both administrative and client applications are running. The administrator runs on port 8080, and the client application runs on port 9010

This is what I did in my admin application.

<dependency> <groupId>de.codecentric</groupId> <artifactId>spring-boot-admin-server</artifactId> <version>1.5.3</version> </dependency> <dependency> <groupId>de.codecentric</groupId> <artifactId>spring-boot-admin-server-ui</artifactId> <version>1.5.3</version> </dependency> 

Added these annotations

 @Configuration @SpringBootApplication @EnableAdminServer public class SpringBootAdminApplication { public static void main(String[] args) { SpringApplication.run(SpringBootAdminApplication.class, args); } } 

This is what I added in my client application

 <dependency> <groupId>de.codecentric</groupId> <artifactId>spring-boot-admin-starter-client</artifactId> <version>1.5.3</version> </dependency> 

and added this to his properties file (YAML)

  spring: boot: admin: url: - http://localhost:8080 management: security: enabled: false 

This is what my toolbar looks like, as you can see that there are no monitoring applications.

This is what my panel looks like

+5
source share

Source: https://habr.com/ru/post/1270913/


All Articles