Uses of Interface
io.helidon.health.HealthCheck
Packages that use HealthCheck
Package
Description
Health check support for Helidon Database Client.
Healthchecks provided by our implementation.
Health check SPI.
Provides support for Microstream-HealthChecks features integration.
Health check for Neo4j.
Helidon WebServer Observability Health Support.
-
Uses of HealthCheck in io.helidon.dbclient.health
Classes in io.helidon.dbclient.health that implement HealthCheck -
Uses of HealthCheck in io.helidon.health.checks
Classes in io.helidon.health.checks that implement HealthCheckModifier and TypeClassDescriptionclass
A health check that looks for thread deadlocks.class
A health check that verifies whether the server is running out of disk space.class
A health check that verifies whether the server is running out of Java heap space.Methods in io.helidon.health.checks that return HealthCheckModifier and TypeMethodDescriptionstatic HealthCheck
HealthChecks.deadlockCheck()
Deadlock health check.static HealthCheck
HealthChecks.diskSpaceCheck()
Disk space health check.static HealthCheck
HealthChecks.diskSpaceCheck
(Config config) Disk space health check, set up via config.static HealthCheck[]
HealthChecks.healthChecks()
Built-in health checks.static HealthCheck[]
HealthChecks.healthChecks
(Config config) Built-in health checks, set up using "helidon.health" configuration.Methods in io.helidon.health.checks that return types with arguments of type HealthCheck -
Uses of HealthCheck in io.helidon.health.spi
Methods in io.helidon.health.spi that return types with arguments of type HealthCheckModifier and TypeMethodDescriptionHealthCheckProvider.healthChecks
(Config config) Health checks provided by this provider. -
Uses of HealthCheck in io.helidon.integrations.microstream.health
Classes in io.helidon.integrations.microstream.health that implement HealthCheck -
Uses of HealthCheck in io.helidon.integrations.neo4j.health
Classes in io.helidon.integrations.neo4j.health that implement HealthCheck -
Uses of HealthCheck in io.helidon.webserver.observe.health
Methods in io.helidon.webserver.observe.health that return types with arguments of type HealthCheckModifier and TypeMethodDescriptionHealthObserverConfig.BuilderBase.healthChecks()
Health checks with implicit types.HealthObserverConfig.BuilderBase.HealthObserverConfigImpl.healthChecks()
Methods in io.helidon.webserver.observe.health with parameters of type HealthCheckModifier and TypeMethodDescriptionHealthObserverConfig.BuilderBase.addCheck
(HealthCheck check) Health checks with implicit types.HealthObserverConfig.BuilderBase.addCheck
(HealthCheck check, HealthCheckType type) Add the provided health check using an explicit type (may differ from thetype()
.HealthObserverConfig.BuilderBase.addChecks
(HealthCheck[] checks) Add the provided health checks.static HealthObserver
HealthObserver.create
(HealthCheck... healthChecks) Create a health observer, adding the provided checks to the checks discovered viaServiceLoader
andHealthCheckProvider
.Method parameters in io.helidon.webserver.observe.health with type arguments of type HealthCheckModifier and TypeMethodDescriptionHealthObserverConfig.BuilderBase.addHealthChecks
(List<? extends HealthCheck> healthChecks) Health checks with implicit types.HealthObserverConfig.BuilderBase.healthChecks
(List<? extends HealthCheck> healthChecks) Health checks with implicit types.