在Spring Boot执行器运行状况检查API中启用日志记录

在Spring Boot执行器运行状况检查API中启用日志记录,第1张

在Spring Boot执行器运行状况检查API中启用日志记录

最好的方法是使用扩展执行器端点

@EndpointWebExtension
。您可以执行以下 *** 作;

@Component@EndpointWebExtension(endpoint = HealthEndpoint.class)public class HealthEndpointWebExtension {    private HealthEndpoint healthEndpoint;    private HealthStatusHttpMapper statusHttpMapper;    // Constructor    @ReadOperation    public WebEndpointResponse<Health> health() {        Health health = this.healthEndpoint.health();        Integer status = this.statusHttpMapper.mapStatus(health.getStatus());        // log here depending on health status.        return new WebEndpointResponse<>(health, status);    }}

更多关于执行器终点延伸这里,在 4.8。
扩展现有端点



欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/4991837.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-11-14
下一篇 2022-11-14

发表评论

登录后才能评论

评论列表(0条)

保存