网站建设资讯

NEWS

网站建设资讯

springboot--自定义健康检查-创新互联

1、添加依赖

成都创新互联公司-专业网站定制、快速模板网站建设、高性价比泽州网站开发、企业建站全套包干低至880元,成熟完善的模板库,直接使用。一站式泽州网站制作公司更省心,省钱,快速模板网站建设找我们,业务覆盖泽州地区。费用合理售后完善,十载实体公司更值得信赖。

            org.springframework.boot
            spring-boot-starter-actuator

2、通过实现HealthIndicator接口方式

@Component
public class MyHealthIndicator implements HealthIndicator {
    @Override
    public Health health() {
        // 检查通过(方式一新建对象)
        return new Health.Builder().withDetail("usercount", 10) //自定义监控内容
                .withDetail("userstatus", "up").up().build();
        // 检查失败(方式二静态方法)
        //return Health.down().withDetail("status", errorCode)
        //        .withDetail("message", "服务故障").build();
    }
}

3、通过继承AbstractHealthIndicator 方式

public class RedisHealthIndicator extends AbstractHealthIndicator {

    private static final String VERSION = "version";

    private static final String REDIS_VERSION = "redis_version";

    private final RedisConnectionFactory redisConnectionFactory;

    public RedisHealthIndicator(RedisConnectionFactory connectionFactory) {
        Assert.notNull(connectionFactory, "ConnectionFactory must not be null");
        this.redisConnectionFactory = connectionFactory;
    }

    @Override
    protected void doHealthCheck(Health.Builder builder) throws Exception {
        RedisConnection connection = RedisConnectionUtils
                .getConnection(this.redisConnectionFactory);
        try {
            if (connection instanceof RedisClusterConnection) {
                ClusterInfo clusterInfo = ((RedisClusterConnection) connection)
                        .clusterGetClusterInfo();
                builder.up().withDetail("cluster_size", clusterInfo.getClusterSize())
                        .withDetail("slots_up", clusterInfo.getSlotsOk())
                        .withDetail("slots_fail", clusterInfo.getSlotsFail());
            }
            else {
                Properties info = connection.info();
                builder.up().withDetail(VERSION, info.getProperty(REDIS_VERSION));
            }
        }
        finally {
            RedisConnectionUtils.releaseConnection(connection,
                    this.redisConnectionFactory);
        }
    }
}

另外有需要云服务器可以了解下创新互联scvps.cn,海内外云服务器15元起步,三天无理由+7*72小时售后在线,公司持有idc许可证,提供“云服务器、裸金属服务器、高防服务器、香港服务器、美国服务器、虚拟主机、免备案服务器”等云主机租用服务以及企业上云的综合解决方案,具有“安全稳定、简单易用、服务可用性高、性价比高”等特点与优势,专为企业上云打造定制,能够满足用户丰富、多元化的应用场景需求。


分享文章:springboot--自定义健康检查-创新互联
分享路径:http://cdweb.net/article/coeghc.html