I am trying to monitor my spring boot application, which has actuator support. And to be able to set a SpringBootAdmin server and client. I enabled the shutdown endpoint in the client application by adding the following to the application.properties file:
management.endpoint.shutdown.enabled=true
management.endpoints.web.exposure.include=health,metrics,loggers,httptrace,shutdown
Now I am able to hit the actuator shutdown api through the postman client and functionality is working fine.
Is there any way to get the shut down feature/tab in the spring boot admin UI?