在Spring Actuator实现自定义端点中案例的的基础上,实现自定义HealthIndicator。为什么还要实现HealthIndicator呢?Spring Actuator实现自定义端点中案例只是对status的数据进行了监控,至于这个数据是否健康并没有进行评价。实现HealthIndicator就是对自定义监控数据的健康状态根据需求进行一个评价,比如本案例中任务status为running就是正常的,其他状态不正常。
具体实现如下:
测试:
标签:status,自定义,实现,Spring,HealthIndicator,Actuator From: https://www.cnblogs.com/ilovebath/p/18128247