Skip to main content

log_analytics_waf_log_analytics_rankings

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

Overview

Namelog_analytics_waf_log_analytics_rankings
TypeResource
Idazure.cdn.log_analytics_waf_log_analytics_rankings

Fields

The following fields are returned by SELECT queries:

Describe the result of a successful operation.

NameDatatypeDescription
dataarray
dateTimeBeginstring (date-time)
dateTimeEndstring (date-time)
groupsarray

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
getselectsubscriptionId, resourceGroupName, profileName, metrics, dateTimeBegin, dateTimeEnd, maxRanking, rankingsactions, ruleTypesGet WAF log analytics charts for AFD profile

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
dateTimeBeginstring (date-time)
dateTimeEndstring (date-time)
maxRankinginteger (int32)
metricsarray
profileNamestringName of the Azure Front Door Standard or Azure Front Door Premium profile which is unique within the resource group. which is unique within the resource group.
rankingsarray
resourceGroupNamestringName of the Resource group within the Azure subscription.
subscriptionIdstringAzure Subscription ID.
actionsarray
ruleTypesarray

SELECT examples

Get WAF log analytics charts for AFD profile

SELECT
data,
dateTimeBegin,
dateTimeEnd,
groups
FROM azure.cdn.log_analytics_waf_log_analytics_rankings
WHERE subscriptionId = '{{ subscriptionId }}' -- required
AND resourceGroupName = '{{ resourceGroupName }}' -- required
AND profileName = '{{ profileName }}' -- required
AND metrics = '{{ metrics }}' -- required
AND dateTimeBegin = '{{ dateTimeBegin }}' -- required
AND dateTimeEnd = '{{ dateTimeEnd }}' -- required
AND maxRanking = '{{ maxRanking }}' -- required
AND rankings = '{{ rankings }}' -- required
AND actions = '{{ actions }}'
AND ruleTypes = '{{ ruleTypes }}'
;