Spring Boot Actuator: Difference between revisions

From NovaOrdis Knowledge Base
Jump to navigation Jump to search
(Created page with "=External= * https://docs.spring.io/spring-boot/docs/current/reference/htmlsingle/#production-ready =Internal= * Spring Boot#Projects")
 
No edit summary
 
(4 intermediate revisions 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=


* [[Spring Boot#Projects]]
* [[Spring Boot#Projects|Spring Boot]]
 
=Overview=
 
Exposes /actuator/health and /actuator/info by default.
 
=Enable=
 
<syntaxhighlight lang='groovy'>
dependencies {
 
  ...
  implementation 'org.springframework.boot:spring-boot-starter-actuator'
  ...
}
</syntaxhighlight>

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'
  ...
}