latency_colos
Creates, updates, deletes, gets or lists a latency_colos resource.
Overview
| Name | latency_colos |
| Type | Resource |
| Id | cloudflare.zones.latency_colos |
Fields
The following fields are returned by SELECT queries:
- list_by_zone
Argo Analytics for a zone at different PoPs response
| Name | Datatype | Description |
|---|---|---|
errors | array | |
messages | array | |
result | object | |
success | boolean | Whether the API call was successful (true) |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
list_by_zone | select | zone_id | Retrieves Argo Smart Routing analytics broken down by geographic points of presence (PoPs). Shows latency improvements and routing efficiency per location. |
Parameters
Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.
| Name | Datatype | Description |
|---|---|---|
zone_id | string | The Cloudflare zone ID. |
SELECT examples
- list_by_zone
Retrieves Argo Smart Routing analytics broken down by geographic points of presence (PoPs). Shows latency improvements and routing efficiency per location.
SELECT
errors,
messages,
result,
success
FROM cloudflare.zones.latency_colos
WHERE zone_id = '{{ zone_id }}' -- required
;