database_account_region_metrics
Creates, updates, deletes, gets or lists a database_account_region_metrics
resource.
Overview
Name | database_account_region_metrics |
Type | Resource |
Id | azure.cosmos_db.database_account_region_metrics |
Fields
Name | Datatype | Description |
---|---|---|
name | object | A metric name. |
endTime | string | The end time for the metric (ISO-8601 format). |
metricValues | array | The metric values for the specified time window and timestep. |
startTime | string | The start time for the metric (ISO-8601 format). |
timeGrain | string | The time grain to be used to summarize the metric values. |
unit | string | The unit of the metric. |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
list | SELECT | $filter, accountName, region, resourceGroupName, subscriptionId | Retrieves the metrics determined by the given filter for the given database account and region. |
SELECT
examples
Retrieves the metrics determined by the given filter for the given database account and region.
SELECT
name,
endTime,
metricValues,
startTime,
timeGrain,
unit
FROM azure.cosmos_db.database_account_region_metrics
WHERE $filter = '{{ $filter }}'
AND accountName = '{{ accountName }}'
AND region = '{{ region }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}';