Spring Boot Actuator: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
|||
Line 1: | Line 1: | ||
=External= | =External= | ||
* [https://www.infoq.com/presentations/spring-boot-actuator/ InfoQ Madhura Bhave Mastering Spring Boot's Actuator] | * (to process) [https://www.infoq.com/presentations/spring-boot-actuator/ InfoQ Madhura Bhave Mastering Spring Boot's Actuator] | ||
* https://docs.spring.io/spring-boot/docs/current/reference/htmlsingle/#production-ready | * https://docs.spring.io/spring-boot/docs/current/reference/htmlsingle/#production-ready | ||
Latest revision as of 19:47, 22 May 2019
External
- (to process) InfoQ Madhura Bhave Mastering Spring Boot's Actuator
- https://docs.spring.io/spring-boot/docs/current/reference/htmlsingle/#production-ready
Internal
Overview
Exposes /actuator/health and /actuator/info by default.
Enable
dependencies {
...
implementation 'org.springframework.boot:spring-boot-starter-actuator'
...
}