APIs.io Engineering Platform · Schema
zone-analytics-api_requests_by_colo
Breakdown of totals for requests.
APIs.ioEngineeringPlatform
Properties
| Name | Type | Description |
|---|---|---|
| all | integer | Total number of requests served. |
| cached | integer | Total number of cached requests served. |
| country | object | Key/value pairs where the key is a two-digit country code and the value is the number of requests served to that country. |
| http_status | object | A variable list of key/value pairs where the key is a HTTP status code and the value is the number of requests with that code served. |
| uncached | integer | Total number of requests served from the origin. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/zone-analytics-api_requests_by_colo",
"title": "zone-analytics-api_requests_by_colo",
"description": "Breakdown of totals for requests.",
"properties": {
"all": {
"description": "Total number of requests served.",
"type": "integer"
},
"cached": {
"description": "Total number of cached requests served.",
"type": "integer"
},
"country": {
"additionalProperties": true,
"description": "Key/value pairs where the key is a two-digit country code and the value is the number of requests served to that country.",
"example": {
"AG": 37298,
"GI": 293846,
"US": 4181364.0
},
"type": "object"
},
"http_status": {
"description": "A variable list of key/value pairs where the key is a HTTP status code and the value is the number of requests with that code served.",
"example": {
"200": 13496983.0,
"301": 283,
"400": 187936,
"402": 1828,
"404": 1293
},
"type": "object"
},
"uncached": {
"description": "Total number of requests served from the origin.",
"type": "integer"
}
},
"type": "object"
}