aspa_timeseries
Creates, updates, deletes, gets or lists an aspa_timeseries resource.
Overview
| Name | aspa_timeseries |
| Type | Resource |
| Id | cloudflare.radar.aspa_timeseries |
Fields
The following fields are returned by SELECT queries:
- list
Successful response.
| Name | Datatype | Description |
|---|---|---|
meta | object | |
serie_0 | object |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
list | select | dateStart, dateEnd, name, rir, location, format | Retrieves ASPA (Autonomous System Provider Authorization) object count over time. Supports filtering by RIR or location (country code) to generate multiple named series. If no RIR or location filter is specified, returns total count. |
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 |
|---|---|---|
dateEnd | string (date-time) | End of the date range (inclusive). |
dateStart | string (date-time) | Start of the date range (inclusive). |
format | string | Format in which results will be returned. |
location | array | Filters results by location. Specify a comma-separated list of alpha-2 location codes. |
name | array | Array of names used to label the series in the response. |
rir | array | Filter by Regional Internet Registry (RIR). Multiple RIRs generate multiple series. |
SELECT examples
- list
Retrieves ASPA (Autonomous System Provider Authorization) object count over time. Supports filtering by RIR or location (country code) to generate multiple named series. If no RIR or location filter is specified, returns total count.
SELECT
meta,
serie_0
FROM cloudflare.radar.aspa_timeseries
WHERE dateStart = '{{ dateStart }}'
AND dateEnd = '{{ dateEnd }}'
AND name = '{{ name }}'
AND rir = '{{ rir }}'
AND location = '{{ location }}'
AND format = '{{ format }}'
;