- URL:
- https://<root>/services/<serviceName>.<serviceType>/statistics
- Methods:
GET
- Required Capability:
- Access allowed with any authorized privilege
- Version Introduced:
- 10.1
Description
The statistics
resource provides a view into the life cycle of all instances of the service on all server machines in the site.
Initially, all instances are in the not
state, but they move into the initializing
state as they are constructed. The instances are not usable in any of these states. A fully constructed instance remains in the pool (in other words, the free state) before it's called into service. Instances are marked as busy
when they're servicing requests. Once request processing is complete, instances are returned to the pool; they are free to service any other requests.
The transactions
metric indicates the total number of invocations that have occurred on the service. Similarly, total
indicates the total amount of time the service is in use servicing requests.
You can view the statistics for a machine or use the summary
property, which consolidates the metrics from all server machines into one for the entire site.
Request parameters
Parameter | Description |
---|---|
| The response format. The default response format is Values: |
Example usage
The following is a sample request URL used to access the statistics
resource:
https://machine.domain.com/webadaptor/admin/services/Maps/Seattle.MapServer/statistics?f=pjson
JSON Response syntax
{
"summary": {
"folderName": "<folder>",
"serviceName": "<serviceName>",
"type": "<serviceType>",
"startTime": "",
"max": <number>,
"busy": <number>,
"free": <number>,
"initializing": <number>,
"notCreated": <number>,
"transactions": <number>,
"totalBusyTime": <number>,
"isStatisticsAvailable": <true|false>
},
"perMachine": [
{
"folderName": "<folder>",
"serviceName": "<serviceName>",
"type": "<serviceType>",
"machineName": "<server>",
"max": <number>,
"busy": <number>,
"free": <number>,
"initializing": <number>,
"notCreated": <number>,
"transactions": <number>,
"totalBusyTime": <number>,
"isStatisticsAvailable": <true|false>
}
]
}
JSON Response example
{
"summary": {
"folderName": "Maps",
"serviceName": "Seattle",
"type": "MapServer",
"startTime": "",
"max": 4,
"busy": 2,
"free": 2,
"initializing": 0,
"notCreated": 0,
"transactions": 130,
"totalBusyTime": 12400,
"isStatisticsAvailable": true
},
"perMachine": [
{
"folderName": "Maps",
"serviceName": "Seattle",
"type": "MapServer",
"machineName": "MACHINE1.DOMAIN.COM",
"max": 2,
"busy": 1,
"free": 1,
"initializing": 0,
"notCreated": 0,
"transactions": 65,
"totalBusyTime": 6200,
"isStatisticsAvailable": true
},
{
"folderName": "Maps;",
"serviceName": "Seattle",
"type": "MapServer",
"machineName": "MACHINE2.DOMAIN.COM",
"max": 2,
"busy": 1,
"free": 1,
"initializing": 0,
"notCreated": 0,
"transactions": 65,
"totalBusyTime": 6200,
"isStatisticsAvailable": true
},
]
}