From the course: Advanced Spring: Spring Boot Actuator

Unlock the full course today

Join today to access over 25,000 courses taught by industry experts.

Implementing the Health Indicator interface

Implementing the Health Indicator interface - Spring Boot Tutorial

From the course: Advanced Spring: Spring Boot Actuator

Implementing the Health Indicator interface

- [Instructor] In the last video, we went over overriding the actuator base path as well as mapping endpoints to different paths. Let's comment out those configurations to get back to our default configuration where we just have /actuator as our base path. To make this make more sense, I'm going to first go to Postman. Currently, if I hit healthcheck, this was the last customization we made. And we also chained the base path. It's no longer pointing to /actuator, and we can confirm that. Just trigger this endpoint. As you can see, we can find the actuator path. So what we want to do is go back into our properties file and get things back to where they were. In my properties file, we're going to comment out these last two configurations, and we're going to restart the application. Once the app is back up and running, I'm going to go back to Postman, and I'm going to trigger the /actuator endpoint to see if I have all…

Contents