Oracle WebLogic Server APIs · Schema
ServerRuntime
Application ServerEnterpriseJava EEMiddlewareOracleWebLogic
Properties
| Name | Type | Description |
|---|---|---|
| name | string | Server name |
| state | string | Current server state |
| listenAddress | string | Current listen address |
| listenPort | integer | Current listen port |
| SSLListenPort | integer | Current SSL listen port |
| activationTime | integer | Server activation time in milliseconds since epoch |
| currentMachine | string | Machine the server is running on |
| weblogicVersion | string | WebLogic Server version string |
| openSocketsCurrentCount | integer | Current number of open sockets |
| healthState | object | |
| restartRequired | boolean | Whether a server restart is required |
| links | array |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/ServerRuntime",
"title": "ServerRuntime",
"type": "object",
"properties": {
"name": {
"type": "string",
"description": "Server name"
},
"state": {
"type": "string",
"description": "Current server state"
},
"listenAddress": {
"type": "string",
"description": "Current listen address"
},
"listenPort": {
"type": "integer",
"description": "Current listen port"
},
"SSLListenPort": {
"type": "integer",
"description": "Current SSL listen port"
},
"activationTime": {
"type": "integer",
"format": "int64",
"description": "Server activation time in milliseconds since epoch"
},
"currentMachine": {
"type": "string",
"description": "Machine the server is running on"
},
"weblogicVersion": {
"type": "string",
"description": "WebLogic Server version string"
},
"openSocketsCurrentCount": {
"type": "integer",
"description": "Current number of open sockets"
},
"healthState": {
"type": "object",
"properties": {
"state": {
"type": "string",
"enum": [
"HEALTH_OK",
"HEALTH_WARN",
"HEALTH_CRITICAL",
"HEALTH_FAILED",
"HEALTH_OVERLOADED"
]
},
"subsystemName": {
"type": "string"
},
"symptoms": {
"type": "array",
"items": {
"type": "string"
}
}
}
},
"restartRequired": {
"type": "boolean",
"description": "Whether a server restart is required"
},
"links": {
"type": "array",
"items": {
"$ref": "#/components/schemas/Link"
}
}
}
}