Reputation: 993
I'm trying to look for reports on my Amazon S3 usage, but Amazon only provides simple summary on the usage, such as amount of storage / transfer in a particular month. I need to have a breakdown of these data by files, for example:
Also, I need to know where do these GET request coming from, so I can better monitor and control on the S3 usage. For example:
abc.mp3:
Any tools / method on achieving these? Thanks!
Upvotes: 1
Views: 59
Reputation: 200446
You need to enable S3 access logs: http://docs.aws.amazon.com/AmazonS3/latest/dev/ServerLogs.html
Then you should be able to parse the logs for the information you want. Once you start getting logs there are many options for parsing them, here are a few that I found with a quick search:
Upvotes: 3