Tile Service Jobs Summary (Feature Service)
- URL:https://<adminservicecatalog-url>/services/<serviceName>/VectorTileServer/jobs
- Version Introduced:ArcGIS Online April 2021
Description
The tile service job summary (jobs) resource represents a summary of all jobs associated with a vector tile service. Each job contains a jobid that corresponds to the specific jobid run and redirects you to the Job Statistics page.
Request parameters
Parameter | Details |
---|---|
f | The response format. The default response format is json. Values: html | json |
token | An access token that identifies the authenticated user and controls access to restricted resources and operations. |
Example usage
Note:
This is an example URL only and is not an active link to an existing service.https://services.myserver.com/arcgis/rest/admin/services/serviceName/VectorTileServer/jobs?f=html
JSON Response syntax
{
"total": <jobs>,
"jobs": [
{
"id": "jobid",
"status": "<Submitted | Done | Canceled | Failed>"
"type": "<UpdateTiles | DeleteTiles>"
"submitTime": "<time>"
"startTime": "<time>"
"endTime": "<time>"
"lodInfos": {
"levelID": <levelID>
"tileCount": <tileCount>
"expectedTileCount": <expectedTileCount>
"tilesSize": <tilesSize>
"status": "<Submitted | Done | Canceled | Failed>"
}
"extent": {
"xmin": <xmin>
"ymin": <ymin>
"xmax": <xmax>
"ymax": <ymax>
"spatialReference": {
"wkid": "<wkid>"
"latestWkid": "<lastestWkid>"
}
}
}
]
}
JSON Response examples
{
"total": 1,
"jobs": [
{
"id": "2e4e3ae6-r690-f374-bc88-26c61w3e9afd",
"status": "DONE",
"type": "UpdateTiles",
"submitTime": 1614283897037,
"startTime": 1614283908127,
"endTime": 1614283951257,
"extent": {
"xmin": -20037508.3428,
"ymin": -20037508.3428,
"xmax": 20037508.3428,
"ymax": 20037508.3428,
"spatialReference": {
"wkid": 102100,
"latestWkid": 3857
}
}
}
]
}
{
"jobId": "2els93e6-50s0-42e4-bs98-26029fhe9afd",
"type": "CACHECOOKER",
"jobStatus": "CANCELED",
"submitter": "User1",
"percentComplete": 100,
"message": "",
"startTime": 1614283908127,
"submitTime": 1614283897037,
"lastTime": 1614283951257,
"extent": {
"xmin": -20037508.3428,
"ymin": -20037508.3428,
"xmax": 20037508.3428,
"ymax": 20037508.3428,
"spatialReference": {
"wkid": 102100,
"latestWkid": 3857
}
},
"numTasks": 1,
"numDoneTasks": 1,
"numErrorTasks": 0,
"numCanceledTasks": 0,
"numSubmittedTasks": 0,
"numProcessingTasks": 0,
"estimatedNumTiles": 0,
"numTiles": 0,
"estimatedTilesSize": 0,
"tilesSize": 0,
"averageTaskTime": 23.781,
"totalTaskTime": 23.781
}