CloudTrailのログをAthena で検索する


クエリの例


CloudTrailのログを別アカウントから参照しようとするとエラーになる

※ALB/ELBのログもs3 objectのownerが外部アカウントなので同じエラーが出ると思われる。


ログイン監査の作成

CloudTrailはAPIのログが残るので、API名(eventName)を知る必要がある。

サンプル:

SELECT eventTime,
         eventSource,
         eventName,
         recipientAccountId,
         awsRegion,
         userIdentity.type AS userIdentity_type,
         userIdentity.arn AS userIdentity_arn,
         sourceIPAddress,
         userAgent
FROM cloudtrail_logs_allregion
WHERE eventName IN ('ConsoleLogin')
        AND DATE = '2019/01/02'
ORDER BY  eventtime DESC LIMIT 10;

organizations


都度ALTER TABLEが必要な基本的な方法

Partition Projection機能でパーティション管理を自動化する方法は次の項目参照


Partition Projection(射影)機能でパーティション管理を自動化


トップ   編集 凍結 差分 バックアップ 添付 複製 名前変更 リロード   新規 一覧 検索 最終更新   ヘルプ   最終更新のRSS
Last-modified: 2020-12-23 (水) 18:50:34