log_analytics_waf_log_analytics_rankings
Creates, updates, deletes, gets or lists a log_analytics_waf_log_analytics_rankings
resource.
Overview
Name | log_analytics_waf_log_analytics_rankings |
Type | Resource |
Id | azure.cdn.log_analytics_waf_log_analytics_rankings |
Fields
The following fields are returned by SELECT
queries:
- get
Describe the result of a successful operation.
Name | Datatype | Description |
---|---|---|
data | array | |
dateTimeBegin | string (date-time) | |
dateTimeEnd | string (date-time) | |
groups | array |
Methods
The following methods are available for this resource:
Name | Accessible by | Required Params | Optional Params | Description |
---|---|---|---|---|
get | select | subscriptionId , resourceGroupName , profileName , metrics , dateTimeBegin , dateTimeEnd , maxRanking , rankings | actions , ruleTypes | Get 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.
Name | Datatype | Description |
---|---|---|
dateTimeBegin | string (date-time) | |
dateTimeEnd | string (date-time) | |
maxRanking | integer (int32) | |
metrics | array | |
profileName | string | Name 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. |
rankings | array | |
resourceGroupName | string | Name of the Resource group within the Azure subscription. |
subscriptionId | string | Azure Subscription ID. |
actions | array | |
ruleTypes | array |
SELECT
examples
- get
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 }}'
;