Lists the elements (values) for a trace dimension along with their total counts. This endpoint is specifically designed for trace dimensions like video_cdn_trace that contain arrays of values.
ID of the Dimension
Number of items to include in the response
Filter results using key:value pairs. Must be provided as an array query string parameter.
Basic filtering:
filters[]=dimension:value
- Include rows where dimension equals valuefilters[]=!dimension:value
- Exclude rows where dimension equals valueFor trace dimensions (like video_cdn_trace):
filters[]=+dimension:value
- Include rows where trace contains valuefilters[]=-dimension:value
- Exclude rows where trace contains valuefilters[]=dimension:[value1,value2]
- Exact trace matchExamples:
filters[]=country:US
- US views onlyfilters[]=+video_cdn_trace:fastly
- Views using Fastly CDNLimit the results to rows that match inequality conditions from provided metric comparison clauses. Must be provided as an array query string parameter.
Possible filterable metrics are the same as the set of metric ids, with the exceptions of exits_before_video_start
, unique_viewers
, video_startup_failure_percentage
, view_dropped_percentage
, and views
.
Example:
metric_filters[]=aggregate_startup_time>=1000
Timeframe window to limit results by. Must be provided as an array query string parameter (e.g. timeframe[]=).
Accepted formats are...
timeframe[]=1498867200&timeframe[]=1498953600
timeframe[]=24:hours or timeframe[]=7:days
Value to order the results by
Sort order.
{
"total_row_count": 25,
"timeframe": [
1755069000,
1755155999
],
"data": [
{
"value": "cdn_a",
"total_count": 2640882
},
{
"value": "cdn_b",
"total_count": 1368812
},
{
"value": "cdn_c",
"total_count": 154541
}
]
}