Azure Front Door Access Logs

📘 Log Query Used We ran the following Kusto query in Azure Log Analytics to search for specific access events through Azure Front Door: kustoCopyEditAzureDiagnostics| where Category contains “FrontDoorAccessLog”| where requestUri_s contains “<target-endpoint>”| where originIp_s contains “<origin-ip>”| where clientIp_s contains “<client-ip>”| project originIp_s, clientIp_s, requestUri_s 🧾 Query Breakdown