Skip to main content

reports_timeseries

Creates, updates, deletes, gets or lists a reports_timeseries resource.

Overview

Namereports_timeseries
TypeResource
Idazure.front_door.reports_timeseries

Fields

The following fields are returned by SELECT queries:

successful operation

NameDatatypeDescription
idstringResource ID.
namestringResource name.
locationstringResource location.
propertiesobjectThe properties of a Timeseries
tagsobjectResource tags.
typestringResource type.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
getselectsubscriptionId, resourceGroupName, profileName, experimentName, startDateTimeUTC, endDateTimeUTC, aggregationInterval, timeseriesTypeendpoint, country

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
aggregationIntervalstringThe aggregation interval of the Timeseries
endDateTimeUTCstring (date-time)The end DateTime of the Timeseries in UTC
experimentNamestringThe Experiment identifier associated with the Experiment
profileNamestringThe Profile identifier associated with the Tenant and Partner
resourceGroupNamestringName of the Resource group within the Azure subscription.
startDateTimeUTCstring (date-time)The start DateTime of the Timeseries in UTC
subscriptionIdstringThe subscription credentials which uniquely identify the Microsoft Azure subscription. The subscription ID forms part of the URI for every service call.
timeseriesTypestringThe type of Timeseries
countrystringThe country associated with the Timeseries. Values are country ISO codes as specified here- https://www.iso.org/iso-3166-country-codes.html
endpointstringThe specific endpoint

SELECT examples

successful operation

SELECT
id,
name,
location,
properties,
tags,
type
FROM azure.front_door.reports_timeseries
WHERE subscriptionId = '{{ subscriptionId }}' -- required
AND resourceGroupName = '{{ resourceGroupName }}' -- required
AND profileName = '{{ profileName }}' -- required
AND experimentName = '{{ experimentName }}' -- required
AND startDateTimeUTC = '{{ startDateTimeUTC }}' -- required
AND endDateTimeUTC = '{{ endDateTimeUTC }}' -- required
AND aggregationInterval = '{{ aggregationInterval }}' -- required
AND timeseriesType = '{{ timeseriesType }}' -- required
AND endpoint = '{{ endpoint }}'
AND country = '{{ country }}'
;