This API lists event groups available for aggregation via /traffic/event. Because the available groups may vary depending on the requested fields, aggregation period and filters, this API can be useful for checking the available groups. Calling this API is much more efficient than calling /traffic/event. However, it might return false positives, that is groups that have no data and thus are not in the result set returned by /traffic/event.
The user must be authenticated and have read permissions to the given sites.
Current aggregation period and filter restrictions are the same as for /traffic/event.
Request
Identical to /traffic/event.
Response
The response object has the following fields:
Examples
Bash
$ python cx.py /traffic/event/describe '{"siteId":"12345", "start":"-1d"}'
{
"start": 1416224274,
"stop": 1416310674,
"groups": [
"referrerHost",
"country",
"city",
"resolution",
"referrerSocialNetwork",
"referrerNewsAggregator",
"exitLinkUrl",
"mobileBrand",
"capability",
"browser",
"browserVersion",
"host",
"exitLinkQuery",
"company",
"deviceType",
"isoRegion",
"browserLanguage",
"os",
"referrerSearchEngine",
"metrocode",
"postalCode",
"query",
"adspace",
"url",
"browserTimezone",
"exitLinkHost",
"referrerUrl",
"site",
"referrerHostClass",
"referrerQuery",
"colorDepth",
"region",
"connectionSpeed"
]
}