We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hi guys! Is possible to have a client request path metrics? Something like top10, or configurable
I use this query to get that information:
query GetZoneTopNs { viewer { zones(filter: {zoneTag: $zoneTag}) { total: httpRequestsAdaptiveGroups(filter: $filter, limit: 1) { count sum { edgeResponseBytes visits __typename } __typename } topPaths: httpRequestsAdaptiveGroups(filter: $filter, limit: 15, orderBy: [$order]) { count avg { sampleInterval __typename } sum { edgeResponseBytes visits __typename } dimensions { metric: clientRequestPath __typename } __typename } __typename } __typename } }
{ "zoneTag": "ZONEID", "filter": { "AND": [ { "datetime_geq": "2022-10-06T19:41:43Z", "datetime_leq": "2022-10-06T20:11:43Z" }, { "requestSource": "eyeball" }, { "clientRequestPath": "/api/" } ] }, "order": "count_DESC" }
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Hi guys! Is possible to have a client request path metrics?
Something like top10, or configurable
I use this query to get that information:
query
Variables:
The text was updated successfully, but these errors were encountered: