HealthState

Application ServerEnterpriseJava EEMiddlewareOracle

Properties

Name Type Description
state string
subsystemName string
partitionName string
symptoms array
View JSON Schema on GitHub

JSON Schema

oracle-weblogic-healthstate-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/HealthState",
  "title": "HealthState",
  "type": "object",
  "properties": {
    "state": {
      "type": "string",
      "enum": [
        "HEALTH_OK",
        "HEALTH_WARN",
        "HEALTH_CRITICAL",
        "HEALTH_FAILED",
        "HEALTH_OVERLOADED"
      ]
    },
    "subsystemName": {
      "type": "string"
    },
    "partitionName": {
      "type": "string"
    },
    "symptoms": {
      "type": "array",
      "items": {
        "type": "object"
      }
    }
  }
}