Uses of Interface
com.caucho.health.check.HealthCheck

Packages that use HealthCheck
com.caucho.admin   
com.caucho.cloud.heartbeat   
com.caucho.env.dbpool   
com.caucho.env.health   
com.caucho.health.check   
com.caucho.health.predicate   
com.caucho.license   
com.caucho.server.admin   
com.caucho.transaction   
 

Uses of HealthCheck in com.caucho.admin
 

Classes in com.caucho.admin that implement HealthCheck
 class PingMailer
          Deprecated. 
 class PingThread
          Deprecated. 
 

Uses of HealthCheck in com.caucho.cloud.heartbeat
 

Classes in com.caucho.cloud.heartbeat that implement HealthCheck
 class HeartbeatHealthCheckImpl
          Health check for the heartbeat.
 

Uses of HealthCheck in com.caucho.env.dbpool
 

Classes in com.caucho.env.dbpool that implement HealthCheck
 class ConnectionPoolHealthCheckImpl
          Health check for the connection pool.
 

Uses of HealthCheck in com.caucho.env.health
 

Classes in com.caucho.env.health that implement HealthCheck
 class AbstractMemoryHealthCheckImpl
           
 class ExprHealthCheckImpl
           
 class HealthServiceHealthCheckImpl
           
 class HttpStatusHealthCheckImpl
           
 class JvmDeadlockHealthCheckImpl
          Configuration for management.
 class MemoryPermGenHealthCheckImpl
           
 class MemoryTenuredHealthCheckImpl
           
 class ResinHealthCheckImpl
          Top-level health check summary for all of Resin.
 

Methods in com.caucho.env.health with type parameters of type HealthCheck
<T extends HealthCheck>
T
HealthService.getHealthCheck(java.lang.Class<T> cl)
           
<T extends HealthCheck>
java.util.List<T>
HealthService.getHealthChecks(java.lang.Class<T> cl)
           
 

Methods in com.caucho.env.health that return types with arguments of type HealthCheck
 java.util.List<HealthCheck> HealthService.getHealthChecks()
           
 

Methods in com.caucho.env.health with parameters of type HealthCheck
 void HealthService.addHealthCheck(HealthCheck healthCheck)
           
 boolean HealthService.containsHealthCheck(HealthCheck check)
           
 int HealthService.getCriticalCount(HealthCheck check)
           
 long HealthService.getCriticalStartTime(HealthCheck check)
           
 int HealthService.getFatalCount(HealthCheck check)
           
 long HealthService.getFatalStartTime(HealthCheck check)
           
 HealthMeter HealthService.getHealthMeter(HealthCheck healthCheck)
           
 HealthCheckResult HealthService.getLastResult(HealthCheck healthCheck)
           
 int HealthService.getWarningCount(HealthCheck check)
           
 long HealthService.getWarningStartTime(HealthCheck check)
           
 

Uses of HealthCheck in com.caucho.health.check
 

Classes in com.caucho.health.check that implement HealthCheck
 class AbstractHealthCheck
           
 class ConnectionPoolHealthCheck
          Monitors the health of Resin database connection pools (<database>).
 class CpuHealthCheck
          Monitors CPU usage.
 class ExprHealthCheck
          Evaluates user supplied JSP EL expressions as a boolean.
 class HealthSystemHealthCheck
          Monitors the health system itself by using a separate thread to determine if health checking is frozen or taking too long.
 class HeartbeatHealthCheck
          Monitors for heartbeats from other members of the cluster.
 class HttpStatusHealthCheck
          Monitors one or more URLs on the current Resin instance by making an HTTP GET request and comparing the returned HTTP status code to a pattern.
 class JvmDeadlockHealthCheck
          Monitors for deadlocked threads, as determined by the JVM.
 class LicenseHealthCheck
          Checks for expiring Resin Pro license.
 class MemoryPermGenHealthCheck
          Monitors the amount of free memory in the PermGen pool.
 class MemoryTenuredHealthCheck
          Monitors the amount of free memory in the Tenured pool.
 class ResinHealthCheck
          This check aggregates all the other health checks, resulting in the current overall health.
 class TransactionHealthCheck
          Monitors the transaction manager for commit failures.
 

Uses of HealthCheck in com.caucho.health.predicate
 

Methods in com.caucho.health.predicate that return HealthCheck
 HealthCheck AbstractHealthCheckPredicate.getHealthCheck()
           
 

Methods in com.caucho.health.predicate with parameters of type HealthCheck
protected  boolean IfFlapping.isFlapping(HealthService healthService, HealthCheck healthCheck, long sampleId)
           
 void AbstractHealthCheckPredicate.setHealthCheck(HealthCheck healthCheck)
          Set health check - optional, if not present summary status will be used
 

Constructors in com.caucho.health.predicate with parameters of type HealthCheck
AbstractHealthCheckPredicate(HealthCheck healthCheck)
           
IfCriticalRechecked(HealthCheck healthCheck)
           
IfCriticalRechecked(HealthCheck healthCheck, long recheckTime)
           
IfFlapping(HealthCheck healthCheck)
           
IfHealthCritical(HealthCheck healthCheck)
           
IfHealthFatal(HealthCheck healthCheck)
           
IfHealthOk(HealthCheck healthCheck)
           
IfHealthStatus(HealthCheck healthCheck, HealthStatus status)
           
IfHealthUnknown(HealthCheck healthCheck)
           
IfHealthWarning(HealthCheck healthCheck)
           
 

Uses of HealthCheck in com.caucho.license
 

Classes in com.caucho.license that implement HealthCheck
 class LicenseHealthCheckImpl
           
 

Uses of HealthCheck in com.caucho.server.admin
 

Classes in com.caucho.server.admin that implement HealthCheck
 class CpuHealthCheckImpl
           
 

Uses of HealthCheck in com.caucho.transaction
 

Classes in com.caucho.transaction that implement HealthCheck
 class TransactionHealthCheckImpl
          Implementation of the transaction manager.