GuardDuty 로그 쿼리
모든 GuardDuty 알러트를 심각도별로 순위 매기기
SELECT
severity,
count(1) AS total_rows
FROM panther_logs.public.aws_guardduty
WHERE p_occurs_between('2021-01-01', '2021-02-01')
GROUP BY severity
ORDER BY total_rows DESC영향받은 리소스별로 모든 GuardDuty 알러트 순위 매기기
SELECT
resource:resourceType AS resource_type,
count(1) AS total_rows
FROM panther_logs.public.aws_guardduty
WHERE p_occurs_between('2021-01-01', '2021-02-01')
GROUP BY resource:resourceType
ORDER BY total_rows DESC마지막 업데이트
도움이 되었나요?

