com.caucho.env.health.HealthStatus Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of resin-kernel Show documentation
Show all versions of resin-kernel Show documentation
Kernel for Resin Java Application Server
The newest version!
/*
* Copyright (c) 1998-2012 Caucho Technology -- all rights reserved
*
* @author Scott Ferguson
*/
package com.caucho.env.health;
/**
*
* UNKNOWN: Health check has not yet executed or failed to execute properly; status is inconclusive.
* OK: Health check reported healthy status. This does not imply recovery.
* WARNING: Health check reported warning threshold reached or critical is possible.
* CRITICAL: Health check reported critical status; action should be taken.
* FATAL: Health check reported fatal; restart expected.
*
*/
public enum HealthStatus
{
UNKNOWN,
DISABLED,
OK,
WARNING,
CRITICAL,
FATAL,
}