Share via

Azure Front Door Standard Diagnostic Setting for Analytics Workspace

Ben Koth 20 Reputation points
2026-03-19T14:59:01.3133333+00:00

I added a diagnostic setting to send front door logs to an analytics workspace. After a few hours I noticed that the front door tables are not showing up in the workspace. So then I created a storage account and added another diagnostic setting to send it to the storage account and I did see logs show up there. Why is it not working to send to the workspace?

Front door is the standard SKU, the location says "Global", my workspace is in East US

Azure Front Door
Azure Front Door

An Azure service that provides a cloud content delivery network with threat protection.

{count} votes

Answer accepted by question author
  1. Venkatesan S 5,710 Reputation points Microsoft External Staff Moderator
    2026-03-19T15:11:27.7633333+00:00

    Hi Ben Koth,

    Thanks for reaching out in Microsoft Q&A forum,

    After a few hours I noticed that the front door tables are not showing up in the workspace. So then I created a storage account and added another diagnostic setting to send it to the storage account and I did see logs show up there. Why is it not working to send to the workspace?

    The logs are appearing in your storage account that confirms Front Door is generating them properly. The delay or absence in Log Analytics is a common point of confusion, and it usually comes down to how the two destinations process data differently.

    Quick breakdown:

    • Storage Account: Receives raw JSON blobs immediately no schema or indexing needed, so logs show up fast.
    • Log Analytics Workspace: Ingests into the shared AzureDiagnostics table (not dedicated tables like FrontDoorAccessLog). You filter by Category (e.g., "FrontdoorAccessLog"). Tables aren't pre-created; they populate after the first events are processed, which can take 15-30 minutes normally, or up to a few hours initially.

    Most likely causes and fixes:

    1. No recent traffic: Generate some test requests to your Front Door endpoint, then wait 15-30 minutes.
    2. Log categories: Double-check Diagnostic Settings has "FrontdoorAccessLog", "FrontdoorHealthProbeLog", etc., enabled (not just metrics).
    3. Query the right place: In Logs, run:
         AzureDiagnostics 
         | where 
         | where TimeGenerated > ago(1h) | take 10 
      
      Or start broad: search * | where TimeGenerated > ago(1h)

    Your Global Front Door to East US workspace is fully supported no region issues here. If nothing shows after traffic and 1-2 hours, try recreating the diagnostic setting or verifying workspace permissions (e.g., Log Analytics Contributor).

    Reference:

    Kindly let us know if the above helps or you need further assistance on this issue.

    PPlease do not forget to 210246-screenshot-2021-12-10-121802.pngand “up-vote” wherever the information provided helps you, this can be beneficial to other community members.

    1 person found this answer helpful.
    0 comments No comments

0 additional answers

Sort by: Most helpful

Your answer

Answers can be marked as 'Accepted' by the question author and 'Recommended' by moderators, which helps users know the answer solved the author's problem.