plans_metrics
Creates, updates, deletes, gets or lists a plans_metrics
resource.
Overview
Name | plans_metrics |
Type | Resource |
Id | azure_stack.subscriptions_admin.plans_metrics |
Fields
Name | Datatype | Description |
---|---|---|
endTime | string | End time of the metric. |
metricUnit | string | The resource metric unit. |
metricValues | array | List of metric values. |
startTime | string | Start time of the metric. |
timeGrain | string | Timespan of the metric. |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
list | SELECT | plan, resourceGroupName, subscriptionId | Get the metrics of the specified plan. |
SELECT
examples
Get the metrics of the specified plan.
SELECT
endTime,
metricUnit,
metricValues,
startTime,
timeGrain
FROM azure_stack.subscriptions_admin.plans_metrics
WHERE plan = '{{ plan }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}';