ComponentRuntime

Application ServerEnterpriseJava EEMiddlewareOracle

Properties

Name Type Description
name string Component name
moduleId string Module identifier
type string Component type
contextRoot string Web application context root
healthState object
openSessionsCurrentCount integer Current number of open sessions
openSessionsHighCount integer Peak number of open sessions
sessionsOpenedTotalCount integer Total sessions opened since deployment
links array
View JSON Schema on GitHub

JSON Schema

oracle-weblogic-componentruntime-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ComponentRuntime",
  "title": "ComponentRuntime",
  "type": "object",
  "properties": {
    "name": {
      "type": "string",
      "description": "Component name"
    },
    "moduleId": {
      "type": "string",
      "description": "Module identifier"
    },
    "type": {
      "type": "string",
      "description": "Component type"
    },
    "contextRoot": {
      "type": "string",
      "description": "Web application context root"
    },
    "healthState": {
      "$ref": "#/components/schemas/HealthState"
    },
    "openSessionsCurrentCount": {
      "type": "integer",
      "description": "Current number of open sessions"
    },
    "openSessionsHighCount": {
      "type": "integer",
      "description": "Peak number of open sessions"
    },
    "sessionsOpenedTotalCount": {
      "type": "integer",
      "description": "Total sessions opened since deployment"
    },
    "links": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/Link"
      }
    }
  }
}