Example usage for org.springframework.boot.actuate.health CompositeHealthIndicator subclass-usage

List of usage examples for org.springframework.boot.actuate.health CompositeHealthIndicator subclass-usage

Introduction

In this page you can find the example usage for org.springframework.boot.actuate.health CompositeHealthIndicator subclass-usage.

Usage

From source file zipkin.server.ZipkinHealthIndicator.java

final class ZipkinHealthIndicator extends CompositeHealthIndicator {

    ZipkinHealthIndicator(HealthAggregator healthAggregator) {
        super(healthAggregator);
    }

From source file me.j360.trace.server.ZipkinHealthIndicator.java

final class ZipkinHealthIndicator extends CompositeHealthIndicator {

    ZipkinHealthIndicator(HealthAggregator healthAggregator) {
        super(healthAggregator);
    }

From source file me.j360.trace.example.consumer2.ZipkinHealthIndicator.java

final class ZipkinHealthIndicator extends CompositeHealthIndicator {

    ZipkinHealthIndicator(HealthAggregator healthAggregator) {
        super(healthAggregator);
    }