All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.helidon.microprofile.health.HealthMpService Maven / Gradle / Ivy

/*
 * Copyright (c) 2018, 2019 Oracle and/or its affiliates. All rights reserved.
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *     http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

package io.helidon.microprofile.health;

import java.lang.annotation.Annotation;
import java.util.Collections;
import java.util.List;
import java.util.Optional;
import java.util.ServiceLoader;
import java.util.logging.Logger;
import java.util.stream.Collectors;

import javax.enterprise.inject.se.SeContainer;

import io.helidon.common.serviceloader.HelidonServiceLoader;
import io.helidon.config.Config;
import io.helidon.health.HealthSupport;
import io.helidon.health.common.BuiltInHealthCheck;
import io.helidon.microprofile.server.RoutingBuilders;
import io.helidon.microprofile.server.spi.MpService;
import io.helidon.microprofile.server.spi.MpServiceContext;

import org.eclipse.microprofile.health.Health;
import org.eclipse.microprofile.health.HealthCheck;
import org.eclipse.microprofile.health.Liveness;
import org.eclipse.microprofile.health.Readiness;

/**
 * Helidon Microprofile Server extension for Health checks.
 */
public class HealthMpService implements MpService {
    private static final Logger LOGGER = Logger.getLogger(HealthMpService.class.getName());

    private static final Health HEALTH_LITERAL = new Health() {
        @Override
        public Class annotationType() {
            return Health.class;
        }
    };

    private static final Readiness READINESS_LITERAL = new Readiness() {
        @Override
        public Class annotationType() {
            return Readiness.class;
        }
    };

    private static final Liveness LIVENESS_LITERAL = new Liveness() {
        @Override
        public Class annotationType() {
            return Liveness.class;
        }
    };

    private static final BuiltInHealthCheck BUILT_IN_HEALTH_CHECK_LITERAL = new BuiltInHealthCheck() {
        @Override
        public Class annotationType() {
            return BuiltInHealthCheck.class;
        }
    };

    @Override
    public void configure(MpServiceContext mpServiceContext) {
        Config healthConfig = mpServiceContext.helidonConfig().get("health");

        if (!healthConfig.get("enabled").asBoolean().orElse(true)) {
            LOGGER.finest("Health support is disabled in configuration");
            return;
        }

        HealthSupport.Builder builder = HealthSupport.builder()
                .config(healthConfig);

        SeContainer cdiContainer = mpServiceContext.cdiContainer();

        // Collect built-in checks if disabled, otherwise set list to empty for filtering
        Optional disableDefaults = mpServiceContext.config()
                .getOptionalValue("mp.health.disable-default-procedures", Boolean.class);
        List builtInHealthChecks = disableDefaults.map(
                b -> b ? cdiContainer.select(HealthCheck.class, BUILT_IN_HEALTH_CHECK_LITERAL)
                        .stream()
                        .collect(Collectors.toList()) : Collections.emptyList())
                .orElse(Collections.emptyList());

        cdiContainer.select(HealthCheck.class, HEALTH_LITERAL)
                .stream()
                .filter(hc -> !builtInHealthChecks.contains(hc))
                .forEach(builder::add);

        cdiContainer.select(HealthCheck.class, LIVENESS_LITERAL)
                .stream()
                .filter(hc -> !builtInHealthChecks.contains(hc))
                .forEach(builder::addLiveness);

        cdiContainer.select(HealthCheck.class, READINESS_LITERAL)
                .stream()
                .filter(hc ->  !builtInHealthChecks.contains(hc))
                .forEach(builder::addReadiness);

        HelidonServiceLoader.create(ServiceLoader.load(HealthCheckProvider.class))
                .forEach(healthCheckProvider -> {
                    builder.add(healthCheckProvider.healthChecks());
                    healthCheckProvider.livenessChecks().forEach(builder::addLiveness);
                    healthCheckProvider.readinessChecks().forEach(builder::addReadiness);
                });

        RoutingBuilders.create(mpServiceContext, healthConfig)
                .routingBuilder()
                .register(builder.build());
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy