Skip To Content
ArcGIS Developer
Dashboard

Job Statistics

Description

This operation provides counts for the current number of asynchronous jobs for the geoprocessing service, as well as counts of those currently carrying the status of FAILED, SUCCEEDED, and CANCELLED. Jobs that have failed or succeeded will remain in the system until the server's jobs directory clears them out according to its user-defined cleanup interval.

Request parameters

ParameterDetails
f

The response format. The default response format is html.

Values: html | json | pjson

Response properties

PropertyDetails
Job Statistics

Gives the current count of all jobs being run by the geoprocessing service and jobs that have FAILED, SUCCEEDED, and CANCELLED status.

Example usage

Below is a sample POST request for statistics:


POST /webadaptor/admin/services/System/PublishingTools.GPServer/jobs/statistics HTTP/1.1
Host: machine.domain.com
Content-Type: application/x-www-form-urlencoded
Content-Length: []

f=json

HTML Response example


Job Statistics

Jobs:  19

Failed:  2

Succeeded:  17

Cancelled:  0

JSON Response example


{
  "total": 19,
  "cancelled": 0,
  "failed": 2,
  "succeeded": 17
}