Package org.springframework.boot.actuate.health

Examples of org.springframework.boot.actuate.health.OrderedHealthAggregator$StatusComparator


  private HealthIndicatorAutoConfigurationProperties configurationProperties = new HealthIndicatorAutoConfigurationProperties();

  @Bean
  @ConditionalOnMissingBean
  public HealthAggregator healthAggregator() {
    OrderedHealthAggregator healthAggregator = new OrderedHealthAggregator();
    if (this.configurationProperties.getOrder() != null) {
      healthAggregator.setStatusOrder(this.configurationProperties.getOrder());
    }
    return healthAggregator;
  }
View Full Code Here


      };
    }

    @Bean
    public HealthAggregator healthAggregator() {
      return new OrderedHealthAggregator();
    }
View Full Code Here

TOP

Related Classes of org.springframework.boot.actuate.health.OrderedHealthAggregator$StatusComparator

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.