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

org.apache.camel.microprofile.health.CamelMicroProfileHealthCheckRegistry Maven / Gradle / Ivy

/*
 * Licensed to the Apache Software Foundation (ASF) under one or more
 * contributor license agreements.  See the NOTICE file distributed with
 * this work for additional information regarding copyright ownership.
 * The ASF licenses this file to You 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 org.apache.camel.microprofile.health;

import java.util.Set;
import java.util.concurrent.CopyOnWriteArraySet;

import io.smallrye.health.api.HealthRegistry;
import io.smallrye.health.api.HealthType;
import io.smallrye.health.registry.HealthRegistries;
import org.apache.camel.CamelContext;
import org.apache.camel.StartupListener;
import org.apache.camel.health.HealthCheck;
import org.apache.camel.health.HealthCheckRegistry;
import org.apache.camel.health.HealthCheckRepository;
import org.apache.camel.impl.health.ComponentsHealthCheckRepository;
import org.apache.camel.impl.health.ConsumersHealthCheckRepository;
import org.apache.camel.impl.health.DefaultHealthCheckRegistry;
import org.apache.camel.impl.health.HealthCheckRegistryRepository;
import org.apache.camel.impl.health.RoutesHealthCheckRepository;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

/**
 * {@link HealthCheckRegistry} implementation to register Camel health checks as MicroProfile health checks on SmallRye
 * Health.
 */
public class CamelMicroProfileHealthCheckRegistry extends DefaultHealthCheckRegistry implements StartupListener {

    private static final Logger LOG = LoggerFactory.getLogger(CamelMicroProfileHealthCheckRegistry.class);
    private final Set repositories = new CopyOnWriteArraySet<>();

    public CamelMicroProfileHealthCheckRegistry() {
        this(null);
    }

    public CamelMicroProfileHealthCheckRegistry(CamelContext camelContext) {
        super(camelContext);
        super.setId("camel-microprofile-health");
    }

    @Override
    protected void doInit() throws Exception {
        super.doInit();
        super.getCamelContext().addStartupListener(this);
    }

    @Override
    public boolean register(Object obj) {
        boolean registered = super.register(obj);
        if (obj instanceof HealthCheck) {
            HealthCheck check = (HealthCheck) obj;
            if (check.isEnabled()) {
                registerMicroProfileHealthCheck(check);
            }
        } else {
            HealthCheckRepository repository = (HealthCheckRepository) obj;
            if (canRegister(repository)) {
                registerRepositoryChecks(repository);
            } else {
                // Try health check registration again on CamelContext started
                repositories.add(repository);
            }
        }
        return registered;
    }

    @Override
    public boolean unregister(Object obj) {
        boolean unregistered = super.unregister(obj);
        if (obj instanceof HealthCheck) {
            HealthCheck check = (HealthCheck) obj;
            removeMicroProfileHealthCheck(check);
        } else {
            HealthCheckRepository repository = (HealthCheckRepository) obj;
            boolean isAllChecksLiveness = repository.stream().allMatch(HealthCheck::isLiveness);
            boolean isAllChecksReadiness = repository.stream().allMatch(HealthCheck::isReadiness);

            if (!(repository instanceof HealthCheckRegistryRepository)
                    && (isAllChecksLiveness || isAllChecksReadiness)) {
                try {
                    if (isAllChecksLiveness) {
                        getLivenessRegistry().remove(repository.getId());
                    }

                    if (isAllChecksReadiness) {
                        getReadinessRegistry().remove(repository.getId());
                    }
                } catch (IllegalStateException e) {
                    if (LOG.isDebugEnabled()) {
                        LOG.debug("Failed to remove repository readiness health {} check due to: {}",
                                repository.getId(),
                                e.getMessage());
                    }
                }
            } else {
                repository.stream().forEach(this::removeMicroProfileHealthCheck);
            }
        }
        return unregistered;
    }

    @Override
    public void onCamelContextStarted(CamelContext context, boolean alreadyStarted) throws Exception {
        // Noop
    }

    @Override
    public void onCamelContextFullyStarted(CamelContext context, boolean alreadyStarted) throws Exception {
        // Some repository checks may not be resolvable earlier in the lifecycle, so try
        // one last time on CamelContext started
        if (alreadyStarted) {
            repositories.stream()
                    .filter(repository -> repository.stream().findAny().isPresent())
                    .forEach(this::registerRepositoryChecks);
            repositories.clear();
        }
    }

    protected void registerRepositoryChecks(HealthCheckRepository repository) {
        if (repository.isEnabled()) {
            boolean isAllChecksLiveness = repository.stream().allMatch(HealthCheck::isLiveness);
            boolean isAllChecksReadiness = repository.stream().allMatch(HealthCheck::isReadiness);

            if (repository instanceof HealthCheckRegistryRepository || !isAllChecksLiveness && !isAllChecksReadiness) {
                // Register each check individually for HealthCheckRegistryRepository or where
                // the repository contains
                // a mix or readiness and liveness checks
                repository.stream()
                        .filter(HealthCheck::isEnabled)
                        .forEach(this::registerMicroProfileHealthCheck);
            } else {
                // Since the number of potential checks for consumers / routes etc is
                // non-deterministic
                // avoid registering each one with SmallRye health and instead aggregate the
                // results so
                // that we avoid highly verbose health output
                String healthCheckName = repository.getId();
                if (repository.getClass().getName().startsWith("org.apache.camel")
                        && !healthCheckName.startsWith("camel-")) {
                    healthCheckName = "camel-" + healthCheckName;
                }

                CamelMicroProfileRepositoryHealthCheck repositoryHealthCheck = new CamelMicroProfileRepositoryHealthCheck(
                        getCamelContext(), repository, healthCheckName);

                if (registerEagerly(repository)) {
                    // Eagerly register routes, components & consumers HealthCheckRepository since
                    // routes may be supervised
                    // and added with an initial delay. E.g repository.stream() may be empty
                    // initially but will eventually
                    // return some results
                    getReadinessRegistry().register(repository.getId(), repositoryHealthCheck);
                } else {
                    if (isAllChecksLiveness) {
                        getLivenessRegistry().register(repository.getId(), repositoryHealthCheck);
                    }

                    if (isAllChecksReadiness) {
                        getReadinessRegistry().register(repository.getId(), repositoryHealthCheck);
                    }
                }
            }
        }
    }

    protected void registerMicroProfileHealthCheck(HealthCheck camelHealthCheck) {
        org.eclipse.microprofile.health.HealthCheck microProfileHealthCheck = new CamelMicroProfileHealthCheck(
                getCamelContext(), camelHealthCheck);

        if (camelHealthCheck.isReadiness()) {
            getReadinessRegistry().register(camelHealthCheck.getId(), microProfileHealthCheck);
        }

        if (camelHealthCheck.isLiveness()) {
            getLivenessRegistry().register(camelHealthCheck.getId(), microProfileHealthCheck);
        }
    }

    protected void removeMicroProfileHealthCheck(HealthCheck camelHealthCheck) {
        if (camelHealthCheck.isReadiness()) {
            try {
                getReadinessRegistry().remove(camelHealthCheck.getId());
            } catch (IllegalStateException e) {
                if (LOG.isDebugEnabled()) {
                    LOG.debug("Failed to remove readiness health check due to: {}", e.getMessage());
                }
            }
        }

        if (camelHealthCheck.isLiveness()) {
            try {
                getLivenessRegistry().remove(camelHealthCheck.getId());
            } catch (IllegalStateException e) {
                if (LOG.isDebugEnabled()) {
                    LOG.debug("Failed to remove liveness health check due to: {}", e.getMessage());
                }
            }
        }
    }

    protected boolean canRegister(HealthCheckRepository repository) {
        return repository.stream().findAny().isPresent()
                || repository instanceof RoutesHealthCheckRepository
                || repository instanceof ConsumersHealthCheckRepository
                || repository instanceof ComponentsHealthCheckRepository;
    }

    protected boolean registerEagerly(HealthCheckRepository repository) {
        return repository instanceof RoutesHealthCheckRepository
                || repository instanceof ConsumersHealthCheckRepository
                || repository instanceof ComponentsHealthCheckRepository;
    }

    protected HealthRegistry getLivenessRegistry() {
        return HealthRegistries.getRegistry(HealthType.LIVENESS);
    }

    protected HealthRegistry getReadinessRegistry() {
        return HealthRegistries.getRegistry(HealthType.READINESS);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy