How locate a specific request in AWS, cloudtrail or cloudwatch?
Request on 2022-11-17T17:07:52.037Z
General:
Request URL: https://0712f1246-1104-y-https-www-abc-com.mplbci.ekb.eg/access
HTTP Version: HTTP/1.1
Request method: GET
Remote Address: 195.41.20.252
I am looking for a full set of headers and values, especially the X-Forwarded-For list of IPs that came with the original request, before hitting out systems.
I tried using the Athena query, but I did not get the result
SELECT * FROM cloudtrail_logs_abc_cloudtrails
WHERE sourceipaddress= '195.41.20.252'
SELECT *
FROM cloudtrail_logs_abc_cloudtrails
where eventsource='https://0712f1246-1104-y-https-www-abc-com.mplbci.ekb.eg/access'
limit 100
could anyone suggest me what is the best way to find it , any help would be apricateed .