servers/{{hostname}}/update_status

Note

This endpoint only truly has meaning for cache servers, though it will return a valid response for any server configured in Traffic Ops.

GET

Retrieves information regarding pending updates and Content Invalidation Jobs for a given server

Auth. Required:

Yes

Roles Required:

None

Permissions Required:

SERVER:READ

Response Type:

Array

Request Structure

Table 585 Request Path Parameters

Name

Description

hostname

The (short) hostname of the server being inspected

#1458 Request Example
GET /api/5.0/servers/edge/update_status HTTP/1.1
Host: trafficops.infra.ciab.test
User-Agent: curl/7.47.0
Accept: */*
Cookie: mojolicious=...

Response Structure

Each object in the returned array[1] will contain the following fields:

configUpdateTime:

The last time an update was requested for this server. This field defaults to standard epoch

configApplyTime:

The last time an update was applied for this server. This field defaults to standard epoch

configUpdateFailed:

The status of the last time an update was applied by this server. Defaults to false

host_id:

The integral, unique identifier for the server for which the other fields in this object represent the pending updates and revalidation status

host_name:

The (short) hostname of the server for which the other fields in this object represent the pending updates and revalidation status

parent_pending:

A boolean telling whether or not any Topology ancestor or parent of this server has pending updates

parent_reval_pending:

A boolean telling whether or not any Topology ancestor or parent of this server has pending Content Invalidation Jobs

reval_pending:

true if the server has pending Content Invalidation Jobs, false otherwise

revalUpdateTime:

The last time a content invalidation/revalidation request was submitted for this server. This field defaults to standard epoch

revalApplyTime:

The last time a content invalidation/revalidation request was applied by this server. This field defaults to standard epoch

revalUpdateFailed:

The status of the last time a content invalidation/revalidation request was applied by this server. Defaults to false

status:

The name of the status of this server

See also

Health Protocol gives more information on how these statuses are used, and the GET method of the statuses endpoint can be used to retrieve information about all server statuses configured in Traffic Ops.

upd_pending:

true if the server has pending updates, false otherwise

use_reval_pending:

A boolean which tells ORT whether or not this version of Traffic Ops should use pending Content Invalidation Jobs

Note

This field was introduced to give ORT the ability to work with Traffic Control versions 1.x and 2.x seamlessly - as of Traffic Control v3.0 there is no reason for this field to ever be false.

#1459 Response Example
HTTP/1.1 200 OK
Access-Control-Allow-Credentials: true
Access-Control-Allow-Headers: Origin, X-Requested-With, Content-Type, Accept, Set-Cookie, Cookie
Access-Control-Allow-Methods: POST,GET,OPTIONS,PUT,DELETE
Access-Control-Allow-Origin: *
Content-Type: application/json
Set-Cookie: mojolicious=...; Path=/; Expires=Mon, 18 Nov 2019 17:40:54 GMT; Max-Age=3600; HttpOnly
Whole-Content-Sha512: R6BjNVrcecHGn3eGDqQ1yDiBnEDGQe7QtOMIsRwlpck9SZR8chRQznrkTF3YdROAZ1l8BxR3fXTIvKHIzK2/dA==
X-Server-Name: traffic_ops_golang/
Date: Mon, 04 Feb 2019 16:24:01 GMT
Content-Length: 174

{ "response": [{
    "host_name": "edge",
    "upd_pending": false,
    "reval_pending": false,
    "use_reval_pending": true,
    "host_id": 10,
    "status": "REPORTED",
    "parent_pending": false,
    "parent_reval_pending": false,
    "config_update_time": "2022-02-18T13:52:47.129174-07:00",
    "config_apply_time": "2022-02-18T13:52:47.129174-07:00",
    "revalidate_update_time": "2022-02-28T15:44:15.895145-07:00",
    "revalidate_apply_time": "2022-02-18T13:52:47.129174-07:00"
}]}