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;