HTTP Requests by Colo Groups to HTTP Requests by Adaptive Groups
This guide shares considerations when migrating from the deprecated httpRequests1mByColoGroups
and httpRequests1dByColoGroups
GraphQL API nodes to the httpRequestsAdaptiveGroups
GraphQL API node.
For example, if you wanted to see which five data centers had the most number of requests, the total number of those requests, and the total amount of data transfer, in the past you used the httpRequests1mByColoGroups
GraphQL API node as in the following example:
Response
With the deprecation of the httpRequests1mByColoGroups
and httpRequests1dByColoGroups
GraphQL API nodes, use the httpRequestsAdaptiveGroups
GraphQL API node to access the same data (count
, sum(edgeResponseBytes)
, and visits
).
Request
Response
This query says:
- Given the indicated
zones
,limit
, andtime range
. - Fetch the total number of requests (as
count
), the total amount of data transfer (asedgeResponseBytes
ofsum
object), and the total number ofvisits
per data center.
A few points to note:
- Adding the
requestSource
filter foreyeball
returns request, data transfer, and visit data about only the end users of your website. - Instead of
requests
, thehttpRequestsAdaptiveGroups
node reportscount
, which indicates the number of requests per data center. - To measure data transfer, use
sum(edgeResponseBytes)
. Note that in the old API this was calledbandwidth
even though it actually measured data transfer. unique visitors per colocation
is not supported inhttpRequestsAdaptiveGroups
, but thehttpRequestsAdaptiveGroups
API does supportvisits
. A visit is defined as a page view that originated from a different website or direct link. Cloudflare checks where the HTTP referer does not match the hostname. One visit can consist of multiple page views.