Oracle WebLogic Server APIs · Schema
ServerMonitoring
Application ServerEnterpriseJava EEMiddlewareOracleWebLogic
Properties
| Name | Type | Description |
|---|---|---|
| name | string | Server name |
| state | string | Current server state |
| health | string | Overall health state |
| clusterName | string | Cluster this server belongs to |
| currentMachine | string | Machine the server is running on |
| listenAddress | string | Listen address |
| listenPort | integer | Listen port |
| sslListenPort | integer | SSL listen port |
| activationTime | integer | Activation time in milliseconds since epoch |
| openSocketsCurrentCount | integer | Current number of open sockets |
| weblogicVersion | string | WebLogic Server version |
| links | array |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/ServerMonitoring",
"title": "ServerMonitoring",
"type": "object",
"properties": {
"name": {
"type": "string",
"description": "Server name"
},
"state": {
"type": "string",
"description": "Current server state",
"enum": [
"RUNNING",
"ADMIN",
"STANDBY",
"SHUTDOWN",
"STARTING",
"SUSPENDING",
"FAILED",
"UNKNOWN"
]
},
"health": {
"type": "string",
"description": "Overall health state",
"enum": [
"HEALTH_OK",
"HEALTH_WARN",
"HEALTH_CRITICAL",
"HEALTH_FAILED",
"HEALTH_OVERLOADED"
]
},
"clusterName": {
"type": "string",
"description": "Cluster this server belongs to"
},
"currentMachine": {
"type": "string",
"description": "Machine the server is running on"
},
"listenAddress": {
"type": "string",
"description": "Listen address"
},
"listenPort": {
"type": "integer",
"description": "Listen port"
},
"sslListenPort": {
"type": "integer",
"description": "SSL listen port"
},
"activationTime": {
"type": "integer",
"format": "int64",
"description": "Activation time in milliseconds since epoch"
},
"openSocketsCurrentCount": {
"type": "integer",
"description": "Current number of open sockets"
},
"weblogicVersion": {
"type": "string",
"description": "WebLogic Server version"
},
"links": {
"type": "array",
"items": {
"$ref": "#/components/schemas/Link"
}
}
}
}