Spring Boot Actuator: Difference between revisions
Jump to navigation
Jump to search
Line 1: | Line 1: | ||
=External= | =External= | ||
* [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 | ||
=Internal= | =Internal= | ||
Revision as of 19:47, 22 May 2019
External
- 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'
...
}