Reputation: 305
I have Azure Storage files (blobs) in various states of Hot, Cool, and Archive. However, I have no idea how many files are in each tier or how much space they are taking up or the cost per tier.
How can I get this information either programmatically or through the Azure Portal? So far the portal only shows monthly totals for all files, size, and cost.
Upvotes: 0
Views: 117
Reputation: 6102
If you go to the Metrics
blade you can use the following selection for a metric:
Metric Namespace: Blob
Metric: Blob Capacity or Blob Count
Then you can add a filter and filter on the Blob Tier
. That should give you a good insight on the total space used and the amount of blobs for each tier. Using the Azure Calculator you can then easily calculate what the storage costs.
Upvotes: 1