Help us improve the AWS re:Post Knowledge Center by sharing your feedback in a brief survey. Your input can influence how we create and update our content to better support your AWS journey.
如何找到造成「超過費率」錯誤的 AWS API 呼叫?
2 分的閱讀內容
0
當我嘗試建立、更新或存取 AWS 服務時,收到「超過費率」的錯誤訊息。我想知道是哪個 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;