summary
Creates, updates, deletes, gets or lists a summary resource.
Overview
| Name | summary |
| Type | Resource |
| Id | cloudflare.radar.summary |
Fields
The following fields are returned by SELECT queries:
- get
Successful response.
| Name | Datatype | Description |
|---|---|---|
meta | object | Metadata for the results. |
summary_0 | object |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
get | select | dimension | name, dateRange, dateStart, dateEnd, limitPerGroup, origin, metric, region, format | Retrieves an aggregated summary of origin metrics grouped by the specified dimension. |
Parameters
Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.
| Name | Datatype | Description |
|---|---|---|
dimension | string | Specifies the origin attribute by which to group the results. |
dateEnd | array | End of the date range (inclusive). |
dateRange | array | Filters results by date range. For example, use 7d and 7dcontrol to compare this week with the previous week. Use this parameter or set specific start and end dates (dateStart and dateEnd parameters). |
dateStart | array | Start of the date range. |
format | string | Format in which results will be returned. |
limitPerGroup | integer | Limits the number of objects per group to the top items within the specified time range. When item count exceeds the limit, extra items appear grouped under an "other" category. |
metric | string | Specifies the metric to retrieve. |
name | array | Array of names used to label the series in the response. |
origin | array | Filters results by origin. Required for all dimensions except ORIGIN. |
region | array | Filters results by origin region. |
SELECT examples
- get
Retrieves an aggregated summary of origin metrics grouped by the specified dimension.
SELECT
meta,
summary_0
FROM cloudflare.radar.summary
WHERE dimension = '{{ dimension }}' -- required
AND name = '{{ name }}'
AND dateRange = '{{ dateRange }}'
AND dateStart = '{{ dateStart }}'
AND dateEnd = '{{ dateEnd }}'
AND limitPerGroup = '{{ limitPerGroup }}'
AND origin = '{{ origin }}'
AND metric = '{{ metric }}'
AND region = '{{ region }}'
AND format = '{{ format }}'
;