Interface HealthCheckExecutor
- All Known Implementing Classes:
DefaultHealthCheckExecutor
public interface HealthCheckExecutor
Executes the given
HealthCheck
s and returns their unique results.- Since:
- 6.6.0
-
Method Summary
Modifier and TypeMethodDescriptionperformHealthChecks
(Collection<HealthCheck> healthChecks, LifecyclePhase lifecyclePhase) Executes given health checks for the given phase of the Confluence lifecycle.
-
Method Details
-
performHealthChecks
Set<HealthCheckResult> performHealthChecks(Collection<HealthCheck> healthChecks, LifecyclePhase lifecyclePhase) Executes given health checks for the given phase of the Confluence lifecycle.- Parameters:
healthChecks
- health checks to runlifecyclePhase
- the current phase of the Confluence lifecycle- Returns:
- any results of the checks (not all checks will return results in all phases)
-