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 logging.file or logging.path has been set) |
|
loggers |
Lists all configured... |