Uses of Interface
org.springframework.boot.health.contributor.HealthContributor
Packages that use HealthContributor
Package
Description
Health integration for AMQP and RabbitMQ.
Health integration for Cassandra.
Health integration for Couchbase.
Redis health integration using Spring Data Redis.
Health integration for Elasticsearch.
Health integration for Hazelcast.
Health indicators providing information about an application.
Auto-configuration for health contributors.
Classes related to contributing health information about an application.
Health registry support.
Health integration for JDBC.
Health integration for JMS.
Health integration for LDAP.
Health integration for JavaMail.
MongoDB health integration using Spring Data MongoDB.
Health integration for Neo4j.
-
Uses of HealthContributor in org.springframework.boot.amqp.health
Classes in org.springframework.boot.amqp.health that implement HealthContributorModifier and TypeClassDescriptionclassSimple implementation of aHealthIndicatorreturning status information for the RabbitMQ messaging system. -
Uses of HealthContributor in org.springframework.boot.cassandra.health
Classes in org.springframework.boot.cassandra.health that implement HealthContributorModifier and TypeClassDescriptionclassSimple implementation of aHealthIndicatorreturning status information for Cassandra data stores. -
Uses of HealthContributor in org.springframework.boot.couchbase.health
Classes in org.springframework.boot.couchbase.health that implement HealthContributor -
Uses of HealthContributor in org.springframework.boot.data.redis.health
Classes in org.springframework.boot.data.redis.health that implement HealthContributorModifier and TypeClassDescriptionclassSimple implementation of aHealthIndicatorreturning status information for Redis data stores. -
Uses of HealthContributor in org.springframework.boot.elasticsearch.health
Classes in org.springframework.boot.elasticsearch.health that implement HealthContributorModifier and TypeClassDescriptionclassHealthIndicatorfor an Elasticsearch cluster using aRest5Client. -
Uses of HealthContributor in org.springframework.boot.hazelcast.health
Classes in org.springframework.boot.hazelcast.health that implement HealthContributor -
Uses of HealthContributor in org.springframework.boot.health.application
Classes in org.springframework.boot.health.application that implement HealthContributorModifier and TypeClassDescriptionclassAHealthIndicatorthat checks a specificAvailabilityStateof the application.classAHealthIndicatorthat checks available disk space and reports a status ofStatus.DOWNwhen it drops below a configurable threshold.classAHealthIndicatorthat checks theLivenessStateof the application.classAHealthIndicatorthat checks theReadinessStateof the application.classHealthIndicatorthat checks the certificates the application uses and reportsStatus.OUT_OF_SERVICEwhen a certificate is invalid. -
Uses of HealthContributor in org.springframework.boot.health.autoconfigure.contributor
Subclasses with type arguments of type HealthContributor in org.springframework.boot.health.autoconfigure.contributorModifier and TypeClassDescriptionclassCompositeHealthContributorConfiguration<I extends HealthIndicator, B>Base class for health contributor configurations that can combine source beans into a composite.Methods in org.springframework.boot.health.autoconfigure.contributor that return HealthContributorModifier and TypeMethodDescriptionprotected final HealthContributorCompositeHealthContributorConfiguration.createComposite(Map<String, B> beans) -
Uses of HealthContributor in org.springframework.boot.health.contributor
Subinterfaces of HealthContributor in org.springframework.boot.health.contributorModifier and TypeInterfaceDescriptioninterfaceAHealthContributorthat is composed of otherHealthContributorinstances.interfaceDirectly contributesHealthinformation for specific component or subsystem.Classes in org.springframework.boot.health.contributor that implement HealthContributorModifier and TypeClassDescriptionclassBaseHealthIndicatorimplementations that encapsulates creation ofHealthinstance and error handling.classAuto-configuredHealthIndicatorthat always returnsStatus.UP.Methods in org.springframework.boot.health.contributor that return HealthContributorModifier and TypeMethodDescriptionReactiveHealthContributor.asHealthContributor()Return this reactive contributor as a standard blockingHealthContributor.HealthContributors.Entry.contributor()Returns the value of thecontributorrecord component.@Nullable HealthContributorHealthContributors.getContributor(String name) Return the contributor with the given name.Methods in org.springframework.boot.health.contributor with parameters of type HealthContributorModifier and TypeMethodDescriptionstatic @Nullable ReactiveHealthContributorReactiveHealthContributor.adapt(@Nullable HealthContributor contributor) Adapts the givenHealthContributorinto aReactiveHealthContributorby scheduling blocking calls toSchedulers.boundedElastic().Method parameters in org.springframework.boot.health.contributor with type arguments of type HealthContributorModifier and TypeMethodDescriptionstatic CompositeHealthContributorCompositeHealthContributor.fromMap(Map<String, ? extends HealthContributor> map) Factory method that will create aCompositeHealthContributorfrom the specified map.static <V> CompositeHealthContributorCompositeHealthContributor.fromMap(Map<String, V> map, Function<V, ? extends HealthContributor> valueAdapter) Factory method that will create aCompositeHealthContributorfrom the specified map.Constructors in org.springframework.boot.health.contributor with parameters of type HealthContributorModifierConstructorDescriptionEntry(String name, HealthContributor contributor) Creates an instance of aEntryrecord class. -
Uses of HealthContributor in org.springframework.boot.health.registry
Subclasses with type arguments of type HealthContributor in org.springframework.boot.health.registryMethods in org.springframework.boot.health.registry that return HealthContributorModifier and TypeMethodDescription@Nullable HealthContributorDefaultHealthContributorRegistry.getContributor(String name) @Nullable HealthContributorDefaultHealthContributorRegistry.unregisterContributor(String name) @Nullable HealthContributorHealthContributorRegistry.unregisterContributor(String name) Unregister a previously registered contributor.Methods in org.springframework.boot.health.registry with parameters of type HealthContributorModifier and TypeMethodDescriptionvoidDefaultHealthContributorRegistry.registerContributor(String name, HealthContributor contributor) voidHealthContributorRegistry.registerContributor(String name, HealthContributor contributor) Register a contributor with the givenname.Constructor parameters in org.springframework.boot.health.registry with type arguments of type HealthContributorModifierConstructorDescriptionDefaultHealthContributorRegistry(@Nullable Collection<? extends HealthContributorNameValidator> nameValidators, @Nullable Consumer<BiConsumer<String, HealthContributor>> initialRegistrations) Create a newDefaultHealthContributorRegistryinstance. -
Uses of HealthContributor in org.springframework.boot.jdbc.health
Classes in org.springframework.boot.jdbc.health that implement HealthContributorModifier and TypeClassDescriptionclassHealthIndicatorthat tests the status of aDataSourceand optionally runs a test query. -
Uses of HealthContributor in org.springframework.boot.jms.health
Classes in org.springframework.boot.jms.health that implement HealthContributor -
Uses of HealthContributor in org.springframework.boot.ldap.health
Classes in org.springframework.boot.ldap.health that implement HealthContributor -
Uses of HealthContributor in org.springframework.boot.mail.health
Classes in org.springframework.boot.mail.health that implement HealthContributor -
Uses of HealthContributor in org.springframework.boot.mongodb.health
Classes in org.springframework.boot.mongodb.health that implement HealthContributorModifier and TypeClassDescriptionclassSimple implementation of aHealthIndicatorreturning status information for MongoDB. -
Uses of HealthContributor in org.springframework.boot.neo4j.health
Classes in org.springframework.boot.neo4j.health that implement HealthContributorModifier and TypeClassDescriptionclassHealthIndicatorthat tests the status of a Neo4j by executing a Cypher statement and extracting server and database information.