AWS Builder Center: Learn, Build and Connect with builders in the AWS community
AWS Builder Center is the official home for builders on AWS. Share and read what others are working on, follow people who inspire you, explore training and workshops, and find tools to support what you're building.
Rate exceeded エラーの原因となっている AWS API コールを特定する方法を教えてください。
所要時間2分
0
AWS サービスを作成、更新したり、サービスにアクセスしようとしたりすると、Rate exceeded というエラーメッセージが表示されます。このエラーの原因となっている API コールを特定したいです。
SELECT eventname, errorcode, eventsource, awsregion, useragent, COUNT(*) AS count
FROM cloudtrail-table-name
WHERE errorcode = 'ThrottlingException'
AND eventtime BETWEEN '2018-10-14T03:00:08Z' AND '2018-10-23T07:15:08Z'
GROUP BY errorcode, awsregion, eventsource, useragent, eventname
ORDER BY count DESC;