CosmosDBAccountResource.GetMetricsCollectionPartitions Method

Definition

Retrieves the metrics determined by the given filter for the given collection, split by partition.

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

Parameters

databaseRid
String

Cosmos DB database rid.

collectionRid
String

Cosmos DB collection 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

A collection of PartitionMetric that may take multiple service requests to iterate over.

Exceptions

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

databaseRid, collectionRid or filter is null.

Applies to