Spring Boot Actuator: Difference between revisions

From NovaOrdis Knowledge Base
Jump to navigation Jump to search
No edit summary
 
(One intermediate revision by the same user not shown)
Line 1: Line 1:
=External=
=External=
* (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
=Internal=
=Internal=



Latest revision as of 19:47, 22 May 2019

External

Internal

Overview

Exposes /actuator/health and /actuator/info by default.

Enable

dependencies {

  ...
  implementation 'org.springframework.boot:spring-boot-starter-actuator'
  ...
}