如何在没有Azure门户的情况下获得DocumentDB磁盘使用率

时间:2015-05-16 19:42:12

标签: azure azure-cosmosdb

我们的Azure Portal由其他团队管理。我们无法访问DocumentCollection。有没有办法让我们看到cout的磁盘使用情况? REST API .NET API

1 个答案:

答案 0 :(得分:1)

您可以使用client.ReadDocumentCollectionAsync来获取此信息,例如

ResourceResponse<DocumentCollection> response = 
    await client.ReadDocumentCollectionAsync(collectionLink);
Console.WriteLine(response.CollectionSizeQuota); 
Console.WriteLine(response.CollectionSizeUsage); 

有关详细信息,请参阅https://msdn.microsoft.com/en-us/library/microsoft.azure.documents.client.documentclient.readdocumentcollectionasync.aspxhttps://msdn.microsoft.com/en-us/library/dn799209.aspx

REST API中的等价物是来自GET集合的x-ms- *响应头。