Spring / Spring Boot
Mention some of the important Spring Boot Actuator Endpoints.
| Endpoints. | Details. |
| env | This endpoint exposes properties from Spring Configurable environment. |
| health | Displays the health information of application. |
| shutdown | Allows the application to shutdown gracefully. |
| auditevents | exposes all audit event for the application. |
| metrics | displays "metrics" information about the application. |
| info | displays arbitrary application info. |
| caches | Exposes all the available caches. |
| beans | Lists all the spring beans available in your application. |
| httptrace | Exposes all the trace logs. It provides last 100 HTTP requests, by default. |
| threaddump | Performs thread dump of the application. |
| mappings | Returns the list of @RequestMapping paths in your application. |
| loggers | Displays the logger configuration and allows to modify. |
| scheduledtasks | Displays the scheduled tasks in your application. |
| heapdump | Returns an hprof heap dump file (applicable only for Spring web applications). |
More Related questions...