Skip to main content

aspa_timeseries

Creates, updates, deletes, gets or lists an aspa_timeseries resource.

Overview

Nameaspa_timeseries
TypeResource
Idcloudflare.radar.aspa_timeseries

Fields

The following fields are returned by SELECT queries:

Successful response.

NameDatatypeDescription
metaobject
serie_0object

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
listselectdateStart, dateEnd, name, rir, location, formatRetrieves 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.

NameDatatypeDescription
dateEndstring (date-time)End of the date range (inclusive).
dateStartstring (date-time)Start of the date range (inclusive).
formatstringFormat in which results will be returned.
locationarrayFilters results by location. Specify a comma-separated list of alpha-2 location codes.
namearrayArray of names used to label the series in the response.
rirarrayFilter by Regional Internet Registry (RIR). Multiple RIRs generate multiple series.

SELECT examples

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 }}'
;