Oracle WebLogic Server APIs · Schema
ServletMetrics
Application ServerEnterpriseJava EEMiddlewareOracleWebLogic
Properties
| Name | Type | Description |
|---|---|---|
| name | string | Servlet name |
| contextPath | string | Servlet context path |
| invocationTotalCount | integer | Total invocations |
| executionTimeAverage | integer | Average execution time in milliseconds |
| executionTimeTotal | integer | Total execution time in milliseconds |
| executionTimeHigh | integer | Highest execution time in milliseconds |
| executionTimeLow | integer | Lowest execution time in milliseconds |
| reloadTotalCount | integer | Number of times the servlet was reloaded |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/ServletMetrics",
"title": "ServletMetrics",
"type": "object",
"properties": {
"name": {
"type": "string",
"description": "Servlet name"
},
"contextPath": {
"type": "string",
"description": "Servlet context path"
},
"invocationTotalCount": {
"type": "integer",
"format": "int64",
"description": "Total invocations"
},
"executionTimeAverage": {
"type": "integer",
"description": "Average execution time in milliseconds"
},
"executionTimeTotal": {
"type": "integer",
"format": "int64",
"description": "Total execution time in milliseconds"
},
"executionTimeHigh": {
"type": "integer",
"description": "Highest execution time in milliseconds"
},
"executionTimeLow": {
"type": "integer",
"description": "Lowest execution time in milliseconds"
},
"reloadTotalCount": {
"type": "integer",
"description": "Number of times the servlet was reloaded"
}
}
}