Stay up to date with the latest from the Knowledge Center. See all new Knowledge Center articles published in the last month, and re:Post's top contributors.
如何找到导致“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;