Query Reference

This reference covers the dimensions and operators used to create a query.

The metric selects what query data is displayed. You can choose one field at a time, and the same metric can be applied to different event types. For instance, Function Wall Time can be selected for edge, serverless, or middleware functions, aggregating each field in various ways.

Field NameDescriptionAggregations
Edge RequestsThe number of Edge RequestsCount, Count per Second, Percentages
DurationThe time spent serving a request, as measured by Vercel's Edge NetworkSum, Sum per Second, Min/Max, Percentages, Percentiles
Incoming Fast Data TransferThe incoming amount of Fast Data Transfer used by the request.Sum, Sum per Second, Min/Max, Percentages, Percentiles
Outgoing Fast Data TransferThe outgoing amount of Fast Data Transfer used by the response.Sum, Sum per Second, Min/Max, Percentages, Percentiles
Total Fast Data TransferThe total amount of Fast Data Transfer used by the response.Sum, Sum per Second, Min/Max, Percentages, Percentiles
Function InvocationsThe number of Function invocationsCount, Count per Second, Percentages
Function DurationThe amount of Function duration, as measured in GB-hours.Sum, Sum per Second, Min/Max, Percentages, Percentiles
Function CPU TimeThe amount of CPU time a Vercel Function has spent responding to requests, as measured in milliseconds.Sum, Sum per Second, Min/Max, Percentages, Percentiles
Incoming Fast Origin TransferThe amount of Fast Origin Transfer used by the request.Sum, Sum per Second, Min/Max, Percentages, Percentiles
Outgoing Fast Origin TransferThe amount of Fast Origin Transfer used by the response.Sum, Sum per Second, Min/Max, Percentages, Percentiles
Provisioned MemoryThe amount of memory provisioned to a Serverless Function.Sum, Sum per Second, Min/Max, Percentages, Percentiles
Peak MemoryThe maximum amount of memory used by Serverless Function at any point in time.Sum, Sum per Second, Min/Max, Percentages, Percentiles
Edge Function Execution UnitsThe number of execution units that your Edge Functions have used. An execution unit is 50 ms of CPU time.Sum, Sum per Second, Min/Max, Percentages, Percentiles
Requests BlockedAll requests blocked by either the system or user.Count, Count per Second, Percentages
ISR Read UnitsThe amount of Read Units used to access ISR dataSum, Sum per Second, Min/Max, Percentages, Percentiles
ISR Write UnitsThe amount of Write Units used to store new ISR dataSum, Sum per Second, Min/Max, Percentages, Percentiles
ISR Read/WriteThe amount of ISR operationsSum, Sum per Second, Min/Max, Percentages, Percentiles
Time to First ByteThe time between the request for a resource and when the first byte of a response begins to arrive.Sum, Sum per Second, Min/Max, Percentages, Percentiles
Function Wall TimeThe duration that a Vercel Function has runSum, Sum per Second, Min/Max, Percentages, Percentiles
Firewall ActionsThe incoming web traffic observed by firewall rules.Sum, Sum per Second, Unique, Percentages,
OptimizationsThe number of image transformationsSum, Sum per Second, Unique, Percentages,
Source SizeThe source size of image optimizationsSum, Sum per Second, Min/Max, Percentages, Percentiles
Optimized SizeThe optimized size of image optimizationsSum, Sum per Second, Min/Max, Percentages, Percentiles
Compression RatioThe compression ratio of image optimizationsSum, Sum per Second, Min/Max, Percentages, Percentiles
Size ChangeThe size change of image optimizationsSum, Sum per Second, Min/Max, Percentages, Percentiles

Metrics can be aggregated in the following ways:

AggregationDescription
CountThe number of requests that occurred
Count per SecondThe average rate of requests that occurred
SumThe sum of the field value across all requests
Sum per SecondThe sum of the field value as a rate per second
MinimumThe smallest observed field value
MaximumThe largest observed field value
Percentiles (75th, 90th, 95th, 99th)Percentiles for the field values. For example, 90% of requests will have a duration that is less than the 90th percentile of duration.
PercentagesEach group is reported as a percentage of the ungrouped whole. For example, if a query for request groups by hosts, one host may have 10% of the total request count. Anything excluded by the where clause is not counted towards the ungrouped whole.

Aggregations are calculated within each point on the chart (hourly, daily, etc) and also across the entire query window.

The filter bar defines the conditions to filter your query data. It only fetches data that meets a specified condition based on several fields and operators:

OperatorDescription
is, is notThe operator that allows you to specify a single value
is any of , is not any ofThe operator that allows you to specify multiple values. For example, host in ('vercel.com', 'nextjs.com')
startsWithFilter data values that begin with some specific characters
endsWithFilter data values that end with specific characters
>,>=,<,<=Numerical operators that allow numerical comparisons

The Group By clause calculates statistics for each combination of field values. Each group is displayed as a separate color in the chart view, and has a separate row in the table view.

For example, grouping by Request HostName and HTTP Status will display data broken down by each combination of Request Hostname and HTTP Status.

There are several fields available for use within the Filter and group by:

Field NameDescription
Request HostnameGroup by the request's domains and subdomains
projectGroup by the request's project
Deployment IDGroup by the request's deployment ID
HTTP StatusGroup by the request's HTTP response code
routeThe mapped path used by the request. For example, if you have a dynamic route like /blog/[slug] and a blog post is /blog/my-blog-post, the route is /blog/[slug]
Request PathThe path used by the request. For example, if you have a dynamic route like /blog/[slug] and a blog post is /blog/my-blog-post, the request_path is /blog/my-blog-post
Cache ResultThe cache status for the request
environmentGroup by the environment (production or preview)
Request MethodGroup by the HTTP request method (GET, POST, PUT, etc.)
Referrer URLGroup by the HTTP referrer URL
Referrer HostnameGroup by the HTTP referrer domain
Client IPGroup by the request's IP address
Client IP CountryGroup by the request's IP country
Client User AgentGroup by the request's user agent
AS NumberThe autonomous system number (ASN) for the request. This is related to what network the request came from (either a home network or a cloud provider)
Edge Network RegionGroup by the region the request was routed to
ISR Cache RegionGroup by the ISR cache region
Cache ResultGroup by cache result
WAF ActionGroup by the WAF action taken by the Vercel Firewall (deny, challenge, rate_limit, bypass or log)
WAF Rule IDGroup by the firewall rule ID
Skew ProtectionWhen active, the request would have been subject to version skew but was protected, otherwise inactive.
Last updated on April 4, 2025