What is Spring Boot Admin? Spring Boot Admin is a Angular based application, developed on top of the Spring Actuator Endpoints. It allow us to monitor and manage the Spring Boot applications. How to setup Spring Boot Admin Create the simple spring boot project with https://start.spring.io/ Add Spring Boot Admin Server and UI depedencies <dependency> <groupId> de.codecentric </groupId> <artifactId> spring-boot-admin-server </artifactId> <version> 1.5.7 </version> </dependency> <dependency> <groupId> de.codecentric </groupId> <artifactId> spring-boot-admin-server-ui </artifactId> <version> 1.5.7 </version> </dependency> Add @EnableAdminServer in the Spring Boot Configuration @Configuration @EnableAutoConfiguration @EnableAdminServer public class SpringBootAdminApplication { public static void main( String [...