本文為英文版的機器翻譯版本,如內容有任何歧義或不一致之處,概以英文版為準。
使用 記錄 AWS AppSync API通話 AWS CloudTrail
AWS AppSync 與 整合 AWS CloudTrail,此服務提供 中使用者、角色 AWS 或服務所採取動作的記錄 AWS AppSync。 CloudTrail 擷取 的所有API呼叫 AWS AppSync 做為事件。擷取的呼叫包括來自 AWS AppSync 主控台的呼叫,以及來自對 的程式碼呼叫 AWS AppSync APIs。您可以使用 所收集的資訊 CloudTrail 來判斷對 提出的請求 AWS AppSync、提出請求者的 IP 地址、提出請求的時間,以及其他詳細資訊。
您可以建立追蹤,以將 CloudTrail 事件持續交付至 Amazon Simple Storage Service (Amazon S3) 儲存貯體,包括 的事件 AWS AppSync。如果您未設定追蹤,仍然可以在 CloudTrail 主控台中檢視最新的事件。
重要
目前並未記錄所有 GraphQL 動作。 AppSync 不會將查詢和突變動作記錄到 CloudTrail。
如需 的詳細資訊 CloudTrail,請參閱 AWS CloudTrail 使用者指南 。
AWS AppSync 中的資訊 CloudTrail
CloudTrail 當您建立 AWS 帳戶時, 會在您的帳戶上啟用。在事件歷史記錄 的 CloudTrail 主控台中,您可以檢視、搜尋和下載 AWS 帳戶中的最新事件。如需詳細資訊,請參閱 AWS CloudTrail 使用者指南 中的使用 CloudTrail事件歷史記錄檢視事件。
如需 AWS 帳戶中事件的持續記錄,包括 的事件 AWS AppSync,請建立追蹤。根據預設,當您在主控台建立線索時,線索會套用到所有 AWS 區域。追蹤會記錄 AWS 分割區中所有 區域的事件,並將日誌檔案傳送到您指定的 Amazon S3 儲存貯體。此外,您可以設定其他 AWS 服務,以進一步分析 CloudTrail 日誌中收集的事件資料並對其採取行動。如需詳細資訊,請參閱《AWS CloudTrail 使用者指南》 中的下列主題:
CloudTrail 會記錄所有 AWS AppSync API操作。例如,呼叫 CreateGraphqlApi
、 CreateDataSource
並在 CloudTrail 日誌檔案中ListResolvers
APIs產生項目。這些和其他操作都會記錄在AWS AppSync API參考 中。
每一筆事件或日誌專案都會包含產生請求者的資訊。身分資訊可協助您判斷:
-
請求是使用根 還是 AWS Identity and Access Management (IAM) 使用者憑證進行。
-
提出該請求時,是否使用了特定角色或聯合身分使用者的暫時安全憑證。
-
該請求是否由其他 AWS 服務提出。
如需詳細資訊,請參閱 AWS CloudTrail 使用者指南 中的CloudTrail userIdentity 元素。
了解 AWS AppSync 日誌檔案項目
CloudTrail 會以包含一或多個日誌項目的日誌檔案的形式交付事件。事件代表來自任何來源的單一請求,並包含所請求操作、操作日期和時間、請求參數等相關資訊。由於這些日誌檔案不是公開API呼叫的排序堆疊追蹤,因此它們不會以任何特定順序顯示。
下列範例 CloudTrail 日誌項目示範 CreateApiKey
操作。
{ "Records": [{ "eventVersion": "1.05", "userIdentity": { "type": "IAMUser", "principalId": "A1B2C3D4E5F6G7EXAMPLE", "arn": "arn:aws:iam::111122223333:user/Alice", "accountId": "111122223333", "accessKeyId": "AKIAIOSFODNN7EXAMPLE", "userName": "Alice" }, "eventTime": "2018-01-31T21:49:09Z", "eventSource": "appsync.amazonaws.com", "eventName": "CreateApiKey", "awsRegion": "us-west-2", "sourceIPAddress": "192.2.0.1", "userAgent": "aws-cli/1.11.72 Python/2.7.11 Darwin/16.7.0 botocore/1.5.35", "requestParameters": { "apiId": "a1b2c3d4e5f6g7h8i9jexample" }, "responseElements": { "apiKey": { "id": "***", "expires": 1518037200000 } }, "requestID": "99999999-9999-9999-9999-999999999999", "eventID": "99999999-9999-9999-9999-999999999999", "readOnly": false, "eventType": "AwsApiCall", "recipientAccountId": "111122223333" } ] }
下列範例 CloudTrail 日誌項目示範 ListApiKeys
操作。
{ "Records": [{ "eventVersion": "1.05", "userIdentity": { "type": "IAMUser", "principalId": "A1B2C3D4E5F6G7EXAMPLE", "arn": "arn:aws:iam::111122223333:user/Alice", "accountId": "111122223333", "accessKeyId": "AKIAIOSFODNN7EXAMPLE", "userName": "Alice" }, "eventTime": "2018-01-31T21:49:09Z", "eventSource": "appsync.amazonaws.com", "eventName": "ListApiKeys", "awsRegion": "us-west-2", "sourceIPAddress": "192.2.0.1", "userAgent": "aws-cli/1.11.72 Python/2.7.11 Darwin/16.7.0 botocore/1.5.35", "requestParameters": { "apiId": "a1b2c3d4e5f6g7h8i9jexample" }, "responseElements": { "apiKeys": [ { "id": "***", "expires": 1517954400000 }, { "id": "***", "expires": 1518037200000 }, ] }, "requestID": "99999999-9999-9999-9999-999999999999", "eventID": "99999999-9999-9999-9999-999999999999", "readOnly": false, "eventType": "AwsApiCall", "recipientAccountId": "111122223333" } ] }
下列範例 CloudTrail 日誌項目示範 DeleteApiKey
操作。
{ "Records": [{ "eventVersion": "1.05", "userIdentity": { "type": "IAMUser", "principalId": "A1B2C3D4E5F6G7EXAMPLE", "arn": "arn:aws:iam::111122223333:user/Alice", "accountId": "111122223333", "accessKeyId": "AKIAIOSFODNN7EXAMPLE", "userName": "Alice" }, "eventTime": "2018-01-31T21:49:09Z", "eventSource": "appsync.amazonaws.com", "eventName": "DeleteApiKey", "awsRegion": "us-west-2", "sourceIPAddress": "192.2.0.1", "userAgent": "aws-cli/1.11.72 Python/2.7.11 Darwin/16.7.0 botocore/1.5.35", "requestParameters": { "id": "***", "apiId": "a1b2c3d4e5f6g7h8i9jexample" }, "responseElements": null, "requestID": "99999999-9999-9999-9999-999999999999", "eventID": "99999999-9999-9999-9999-999999999999", "readOnly": false, "eventType": "AwsApiCall", "recipientAccountId": "111122223333" } ] }