Tuesday 17 September 2019

Introduction to Spring Boot Actuator


Spring Boot actuator is used to monitor the running spring boot application.

Spring Boot Actuator provides below features to monitor the application.

a.   Health Endpoint: Used to get the status of application. Apart from providing status of the application, it can also provide the status of dependent of the applications like database, jms queues etc.,
b.   Info Endpoint: Using this endpoint we can provide the information about our application (Ex: Contact details, build status, git commit details etc.,)
c.    Support of JMX:
a.   Beans Endpoint: Gives information about all the beans in application context.
b.   Env Endpoint: State of the environment
c.    Heap dump Endpoint
d.   Thread dump Endpoint
e.   Mappings Endpoint: Gives information about all web url mappings.
f.     Metrics Endpoint


Previous                                                    Next                                                    Home

No comments:

Post a Comment