Package io.smallrye.health.registry
Class HealthRegistries
- java.lang.Object
-
- io.smallrye.health.registry.HealthRegistries
-
@ApplicationScoped public class HealthRegistries extends Object
-
-
Constructor Summary
Constructors Constructor Description HealthRegistries()
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static Collection<HealthRegistry>getHealthGroupRegistries()static HealthRegistrygetHealthGroupRegistry(String groupName)HealthRegistrygetLivenessRegistry()HealthRegistrygetReadinessRegistry()static HealthRegistrygetRegistry(HealthType type)HealthRegistrygetStartupRegistry()HealthRegistrygetWellnessRegistry()
-
-
-
Method Detail
-
getLivenessRegistry
@Produces @Liveness @ApplicationScoped public HealthRegistry getLivenessRegistry()
-
getReadinessRegistry
@Produces @Readiness @ApplicationScoped public HealthRegistry getReadinessRegistry()
-
getStartupRegistry
@Produces @Startup @ApplicationScoped public HealthRegistry getStartupRegistry()
-
getWellnessRegistry
@Produces @Wellness @ApplicationScoped public HealthRegistry getWellnessRegistry()
-
getRegistry
public static HealthRegistry getRegistry(HealthType type)
-
getHealthGroupRegistry
public static HealthRegistry getHealthGroupRegistry(String groupName)
-
getHealthGroupRegistries
public static Collection<HealthRegistry> getHealthGroupRegistries()
-
-