Jey
Jey

Reputation: 1511

Is it possible to get the number(count) of requests made on an Amazon s3 object?

Does AWS SDK for php supports number of get request's made on a particular object by their file name. Just need to find a unique count of the number of hits made on a particular object. Basically amazon count's number of requests made on a bucket. Just curious to know.

Upvotes: 2

Views: 3643

Answers (1)

ceejayoz
ceejayoz

Reputation: 180024

S3 doesn't support this, so the PHP SDK won't either. Amazon doesn't count accesses for you.

You'd need to setup S3 access logging and use something to analyze those.

Upvotes: 3

Related Questions