Deploying Spring Boot Admin
After deploying several microservices, you will appreciate having a single dashboard to monitor and manage all of them in one place. Spring Boot Admin is an open source community project that provides a web interface where you can manage and monitor Spring Boot applications.
Getting ready
You will reuse the applications from the Integrating distributed tracing with Spring Cloud recipe. I’ve prepared a working version in case you haven’t completed that recipe yet. You can find it in this book’s GitHub repository at https://github.com/PacktPublishing/Spring-Boot-3.0-Cookbook/, in the chapter4/recipe4-8/start
folder.
How to do it...
We need to deploy a Spring Boot Admin server and ensure it connects to the discovery service to monitor and manage all applications. Follow these steps:
- First, create a new application for Spring Boot Admin using the Spring Initializr tool. Open https://start.spring.io and use the same parameters...