- java.lang.Object
- 
- io.helidon.health.HealthSupport
 
- 
- 
Nested Class SummaryNested Classes Modifier and Type Class Description static classHealthSupport.BuilderFluent API builder forHealthSupport.
 - 
Field SummaryFields Modifier and Type Field Description static StringDEFAULT_WEB_CONTEXTDefault web context root of the Health check endpoint.
 - 
Method SummaryAll Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static HealthSupport.Builderbuilder()Get a builder to configure health support instance.static HealthSupportcreate()Create a new HealthSupport with no health checks configured.static HealthSupportcreate(Config config)Create a new HealthSupport with no health checks, configured from provided config.voidupdate(Routing.Rules rules)UpdatesRouting.Ruleswithhandlersrepresenting this service.
 
- 
- 
- 
Field Detail- 
DEFAULT_WEB_CONTEXTpublic static final String DEFAULT_WEB_CONTEXT Default web context root of the Health check endpoint.- See Also:
- Constant Field Values
 
 
- 
 - 
Method Detail- 
updatepublic void update(Routing.Rules rules) Description copied from interface:ServiceUpdatesRouting.Ruleswithhandlersrepresenting this service.
 - 
builderpublic static HealthSupport.Builder builder() Get a builder to configure health support instance.- Returns:
- fluent API builder
 
 - 
createpublic static HealthSupport create() Create a new HealthSupport with no health checks configured. The endpoint will always returnUP.- Returns:
- health support configured with no health checks
 
 - 
createpublic static HealthSupport create(Config config) Create a new HealthSupport with no health checks, configured from provided config. The endpoint will always returnUP.- Parameters:
- config- configuration of this health check, used only to get- web-contextproperty to configure- HealthSupport.Builder.webContext(String)
- Returns:
- health support configured with no health checks
 
 
- 
 
-