Working with additional Actuator endpoints
Spring Boot Actuator provides lots of extra data. The following table is a quick summary:
Actuator Endpoint | Description |
auditevents | Exposes audit events for the current application |
autoconfig | Reports what Spring Boot did and didn't autoconfigure and why |
beans | Reports all the beans configured in the application context (including ours as well as the ones autoconfigured by Boot) |
configprops | Exposes all configuration properties |
env | Reports on the current system environment |
health | A simple endpoint to check the life of the app |
heapdump | Returns a GZip-compressed hprof heap dump file (hprof is a tool by every JDK) |
info | Serves up custom content from the app |
logfile | Returns the contents of the logfile (assuming |
loggers | Lists all configured loggers and their levels. Also supports updating log levels through |
metrics | Shows counters and gauges on web usage |
mappings | Gives us details about all Spring WebFlux routes |
status | threaddump... |