本文整理汇总了Java中org.springframework.boot.actuate.health.OrderedHealthAggregator类的典型用法代码示例。如果您正苦于以下问题:Java OrderedHealthAggregator类的具体用法?Java OrderedHealthAggregator怎么用?Java OrderedHealthAggregator使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
OrderedHealthAggregator类属于org.springframework.boot.actuate.health包,在下文中一共展示了OrderedHealthAggregator类的13个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: applicationAliveEndpoint
import org.springframework.boot.actuate.health.OrderedHealthAggregator; //导入依赖的package包/类
@Bean
@ConditionalOnMissingBean(AliveHealthEndpoint.class)
@ConfigurationProperties("extended.health.alive")
public AliveHealthEndpoint applicationAliveEndpoint() {
return new AliveHealthEndpoint("alive", new OrderedHealthAggregator());
}
开发者ID:dm-drogeriemarkt,项目名称:extended-actuator-health-endpoints,代码行数:8,代码来源:ExtendedHealthEndpointAutoConfiguration.java
示例2: basicHealthEndpoint
import org.springframework.boot.actuate.health.OrderedHealthAggregator; //导入依赖的package包/类
@Bean
@ConditionalOnMissingBean(BasicHealthEndpoint.class)
@ConfigurationProperties("extended.health.basic")
public BasicHealthEndpoint basicHealthEndpoint() {
return new BasicHealthEndpoint("basic", new OrderedHealthAggregator());
}
开发者ID:dm-drogeriemarkt,项目名称:extended-actuator-health-endpoints,代码行数:8,代码来源:ExtendedHealthEndpointAutoConfiguration.java
示例3: detailHealthEndpoint
import org.springframework.boot.actuate.health.OrderedHealthAggregator; //导入依赖的package包/类
@Bean
@ConditionalOnMissingBean(DetailHealthEndpoint.class)
@ConfigurationProperties("extended.health.detail")
public DetailHealthEndpoint detailHealthEndpoint() {
return new DetailHealthEndpoint("detail", new OrderedHealthAggregator());
}
开发者ID:dm-drogeriemarkt,项目名称:extended-actuator-health-endpoints,代码行数:8,代码来源:ExtendedHealthEndpointAutoConfiguration.java
示例4: healthEndpoint
import org.springframework.boot.actuate.health.OrderedHealthAggregator; //导入依赖的package包/类
@Bean
@ConditionalOnMissingBean
public HealthEndpoint healthEndpoint() {
return new HealthEndpoint(
this.healthAggregator == null ? new OrderedHealthAggregator()
: this.healthAggregator,
this.healthIndicators == null
? Collections.<String, HealthIndicator>emptyMap()
: this.healthIndicators);
}
开发者ID:vikrammane23,项目名称:https-github.com-g0t4-jenkins2-course-spring-boot,代码行数:11,代码来源:EndpointAutoConfiguration.java
示例5: afterBinderContextInitialized
import org.springframework.boot.actuate.health.OrderedHealthAggregator; //导入依赖的package包/类
@Override
public void afterBinderContextInitialized(String binderConfigurationName,
ConfigurableApplicationContext binderContext) {
if (this.bindersHealthIndicator != null) {
OrderedHealthAggregator healthAggregator = new OrderedHealthAggregator();
Map<String, HealthIndicator> indicators = binderContext.getBeansOfType(HealthIndicator.class);
// if there are no health indicators in the child context, we just mark
// the binder's health as unknown
// this can happen due to the fact that configuration is inherited
HealthIndicator binderHealthIndicator = indicators.isEmpty() ? new DefaultHealthIndicator()
: new CompositeHealthIndicator(healthAggregator, indicators);
this.bindersHealthIndicator.addHealthIndicator(binderConfigurationName, binderHealthIndicator);
}
}
开发者ID:spring-cloud,项目名称:spring-cloud-stream,代码行数:15,代码来源:BindersHealthIndicatorAutoConfiguration.java
示例6: setup
import org.springframework.boot.actuate.health.OrderedHealthAggregator; //导入依赖的package包/类
@Before
public void setup() {
healthAggregator = new OrderedHealthAggregator();
healthAggregator.setStatusOrder(DOWN, OUT_OF_SERVICE, UNKNOWN, new Status("DEGRADED"), UP);
}
示例7: healthAggregator
import org.springframework.boot.actuate.health.OrderedHealthAggregator; //导入依赖的package包/类
@Bean
public HealthAggregator healthAggregator() {
return new OrderedHealthAggregator();
}
开发者ID:vikrammane23,项目名称:https-github.com-g0t4-jenkins2-course-spring-boot,代码行数:5,代码来源:HealthEndpointTests.java
示例8: bindersHealthIndicator
import org.springframework.boot.actuate.health.OrderedHealthAggregator; //导入依赖的package包/类
@Bean
@ConditionalOnMissingBean(name = "bindersHealthIndicator")
public CompositeHealthIndicator bindersHealthIndicator() {
return new CompositeHealthIndicator(new OrderedHealthAggregator());
}
开发者ID:spring-cloud,项目名称:spring-cloud-stream,代码行数:6,代码来源:BindersHealthIndicatorAutoConfiguration.java
示例9: testHealthIndicator1
import org.springframework.boot.actuate.health.OrderedHealthAggregator; //导入依赖的package包/类
@Bean
public CompositeHealthIndicator testHealthIndicator1() {
return new CompositeHealthIndicator(new OrderedHealthAggregator());
}
示例10: testHealthIndicator2
import org.springframework.boot.actuate.health.OrderedHealthAggregator; //导入依赖的package包/类
@Bean
public CompositeHealthIndicator testHealthIndicator2() {
return new CompositeHealthIndicator(new OrderedHealthAggregator());
}
示例11: healthAggregator
import org.springframework.boot.actuate.health.OrderedHealthAggregator; //导入依赖的package包/类
@Bean
public HealthAggregator healthAggregator() {
return new OrderedHealthAggregator();
}
示例12: setUp
import org.springframework.boot.actuate.health.OrderedHealthAggregator; //导入依赖的package包/类
@Before
public void setUp() throws Exception {
healthCheckHandler = new EurekaHealthCheckHandler(new OrderedHealthAggregator());
}
示例13: discoveryCompositeHealthIndicator
import org.springframework.boot.actuate.health.OrderedHealthAggregator; //导入依赖的package包/类
@Bean
public DiscoveryCompositeHealthIndicator discoveryCompositeHealthIndicator(List<DiscoveryHealthIndicator> indicators) {
return new DiscoveryCompositeHealthIndicator(new OrderedHealthAggregator(), indicators);
}