CosmosDBAccountResource.GetMetricsDatabasesAsync Method

Definition

Retrieves the metrics determined by the given filter for the given database account and database.

  • Request Path: /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DocumentDB/databaseAccounts/{accountName}/databases/{databaseRid}/metrics
  • Operation Id: Database_ListMetrics
  • Default Api Version: 2024-02-15-preview
public virtual Azure.AsyncPageable<Azure.ResourceManager.CosmosDB.Models.CosmosDBBaseMetric> GetMetricsDatabasesAsync (string databaseRid, string filter, System.Threading.CancellationToken cancellationToken = default);
abstract member GetMetricsDatabasesAsync : string * string * System.Threading.CancellationToken -> Azure.AsyncPageable<Azure.ResourceManager.CosmosDB.Models.CosmosDBBaseMetric>
override this.GetMetricsDatabasesAsync : string * string * System.Threading.CancellationToken -> Azure.AsyncPageable<Azure.ResourceManager.CosmosDB.Models.CosmosDBBaseMetric>
Public Overridable Function GetMetricsDatabasesAsync (databaseRid As String, filter As String, Optional cancellationToken As CancellationToken = Nothing) As AsyncPageable(Of CosmosDBBaseMetric)

Parameters

databaseRid
String

Cosmos DB database rid.

filter
String

An OData filter expression that describes a subset of metrics to return. The parameters that can be filtered are name.value (name of the metric, can have an or of multiple names), startTime, endTime, and timeGrain. The supported operator is eq.

cancellationToken
CancellationToken

The cancellation token to use.

Returns

An async collection of CosmosDBBaseMetric that may take multiple service requests to iterate over.

Exceptions

databaseRid is an empty string, and was expected to be non-empty.

databaseRid or filter is null.

Applies to