How to view Cosmos DB size?

Viewed 2419

For a SQL database, I can easily see the size of the database in the Overview blade in Azure Portal. Or I can query for instance EXEC sp_spaceused to find out.

Is there such a thing for Cosmos DB?

2 Answers

Search for Monitor -> Metrics -> Select Scope (Your cosmos) -> Select Metric( Data Usage or Index Usage)

The other way go to cosmosdb -> Metrics(Classic)

Another way is to go under Containers Menu -> Browse.

This view shows storage based on each container, cost, throughput. Also, it gives you the total of all of these.

enter image description here

Related