kevin peter
kevin peter

Reputation: 571

AWS Glacier total storage size

How can we get the total amount of data that is storage in Glacier storage on AWS ?

Used S3 lifecylce to move data from S3 to Glacier.

Upvotes: 0

Views: 1579

Answers (2)

kevin peter
kevin peter

Reputation: 571

We can now check total size of AWS Glacier from Cost Explorer by selecting Usage Type Group to S3 Storage:Glacier as shown below.

enter image description here

Upvotes: 0

John Rotenstein
John Rotenstein

Reputation: 270059

If you are looking for the total amount of data you have in Amazon Glacier that was transferred via Amazon S3 lifecycle policies, some options are:

  • You could look at your bill, or
  • Use Amazon S3 Inventory to dump a file of all your objects and then add up the storage for all objects in the Glacier storage class,
  • Write a script that lists S3 objects and adds up the total for objects in the Glacier storage class

Upvotes: 1

Related Questions