statistics
Creates, updates, deletes, gets or lists a statistics
resource.
Overview
Name | statistics |
Type | Resource |
Id | azure.automation.statistics |
Fields
Name | Datatype | Description |
---|---|---|
id | string | Gets the id. |
counterProperty | string | Gets the property value of the statistic. |
counterValue | integer | Gets the value of the statistic. |
endTime | string | Gets the endTime of the statistic. |
startTime | string | Gets the startTime of the statistic. |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
list_by_automation_account | SELECT | automationAccountName, resourceGroupName, subscriptionId | Retrieve the statistics for the account. |
SELECT
examples
Retrieve the statistics for the account.
SELECT
id,
counterProperty,
counterValue,
endTime,
startTime
FROM azure.automation.statistics
WHERE automationAccountName = '{{ automationAccountName }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}';