Restlight Endpoint扩展
在Spring Boot Actuator基础之上Restlight
提供额外的功能扩展
引入Maven依赖:
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-actuator</artifactId>
<version>2.1.1.RELEASE</version>
</dependency>
<dependency>
<groupId>io.esastack</groupId>
<artifactId>restlight-starter-actuator</artifactId>
<version>${restlight.version}</version>
</dependency>
访问 Get
localhost:8080/actuator/info
返回{}
info
和health
两个接口, 可以使用management.endpoints.web.exposure.include=info,health,foo
开启。
在Spring Boot Actuator基础之上Restlight
提供额外的功能扩展
用户可以自己定义Endpoint
实现定制化的健康检查接口
默认情况下健康检查的接口都将与Restight
使用同一个HttpServer服务, 如果需要将健康检查接口与业务接口分别使用不同的端口则需要添加自定义配置
Was this page helpful?
Glad to hear it! Please tell us how we can improve.
Sorry to hear that. Please tell us how we can improve.