com.opentable.metrics.actuate.health.HealthIndicatorCodahaleConfiguration Maven / Gradle / Ivy
/*
* 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 com.opentable.metrics.actuate.health;
import java.util.Collections;
import java.util.Map;
import java.util.Optional;
import javax.annotation.PostConstruct;
import javax.annotation.PreDestroy;
import javax.inject.Inject;
import com.codahale.metrics.health.HealthCheck;
import com.codahale.metrics.health.HealthCheckRegistry;
import org.springframework.boot.actuate.health.Health;
import org.springframework.boot.actuate.health.HealthIndicator;
import org.springframework.boot.actuate.health.Status;
import org.springframework.boot.autoconfigure.condition.ConditionalOnProperty;
import org.springframework.context.annotation.Configuration;
/**
* Registers {@link HealthIndicator} beans in the {@link HealthCheckRegistry}.
*
*/
@Configuration
@ConditionalOnProperty(prefix = "management.health.export-dw", name = "enabled", havingValue = "true", matchIfMissing = true)
public class HealthIndicatorCodahaleConfiguration {
final HealthCheckRegistry registry;
final Map checks;
/**
*Dependencies:
*
* @param registry HealthCheckRegistry bean
* @param checks Map of HealthIndicator beans. Bean names as the key (Spring collections autowiring feature)
*/
@Inject
public HealthIndicatorCodahaleConfiguration(final HealthCheckRegistry registry, final Optional
© 2015 - 2025 Weber Informatics LLC | Privacy Policy