Try OpenEdge Now
skip to main content
Administration Guide
REST API Reference for oemanager.war : Transport management : Get runtime metrics of a transport (SOAP/REST)
 

Get runtime metrics of a transport (SOAP/REST)

Description

Get runtime metrics for a REST or SOAP transport of a Web application deployed in an ABL application.

HTTP Operation

GET

URI

//host_name:port/oemanager/applications/
ABL_app_name/webapps/Web_app_name/transports/{soap|rest}/metrics

Media type

application/vnd.progress+json

Request body

NA

Response codes

200 Success
500 Unexpected Server Error

Command-line example (SOAP)

curl -x GET -v http://localhost:16680/oemanager/applications/pas1/webapps/ROOT/transports/soap/metrics

Response body example (SOAP)

{"result":
{
"serviceDisabled":0,
"soapProcessorErrors":0,
"httpRequestErrors":0,
"httpRequests":0,
"statusRequest":0,
"methodNotAllowederrors":0,
"soapRequests":0,
"successfulSoapRequests":0,
"wsdlRequest":0,
"activeRequests":0,
"urlNotFoundErrors":0,
"type":"OE_SOAP_TRANSPORT",
"startTime":"2014-07-17T08:40:03.422-04:00",
"accessTime":"2014-07-17T10:34:00.295-04:00"
},
"outcome":"SUCCESS",
"versionNo":1,
"errmsg":"NA",
"versionStr":"PASOE 11.5.0",
"operation":"GET OE_SOAP_TRANSPORT METRICS"
}

Command-line example (REST)

curl -X GET -v http://localhost:16680/oemanager/applications/pas1/webapps/ROOT/transports/rest/metrics

Response body example (REST)

{
"result":{"successfulConnectRequests":0,
"serviceNotFound":0,
"numRequests":0,
"serviceUnavailableRequests":0,
"statusRequests":0,
"runRequest":0,
"connectRequests":0,
"successfulRequests":0,
"ExpressionError":0,
"failedRequests":0,
"successfulRunRequest":0,
"type":"OE_REST_TRANSPORT",
"accessTime":"2014-07-17T08:40:58.315-04:00"
},
"outcome":"SUCCESS",
"versionNo":1,
"errmsg":"NA",
"versionStr":"PASOE 11.5.0",
"operation":"GET OE_REST_TRANSPORT METRICS"
}