Spring Boot Actuator: Difference between revisions
Jump to navigation
Jump to search
Line 6: | Line 6: | ||
=Overview= | =Overview= | ||
Exposes /actuator/health and /actuator/info by default. | |||
=Enable= | |||
<syntaxhighlight lang='groovy'> | |||
dependencies { | |||
... | |||
implementation 'org.springframework.boot:spring-boot-starter-actuator' | |||
... | |||
} | |||
</syntaxhighlight> |
Revision as of 02:37, 3 April 2019
External
Internal
Overview
Exposes /actuator/health and /actuator/info by default.
Enable
dependencies {
...
implementation 'org.springframework.boot:spring-boot-starter-actuator'
...
}