Skip to main content Link Menu Expand (external link) Document Search Copy Copied

Task 02: Validate Data Lake integration with Defender XDR

Introduction

After onboarding, new telemetry and incidents generated in Defender XDR are automatically replicated into the Sentinel Data Lake.

This task verifies that replication is functioning correctly and that data remains queryable.

Description

You’ll query the Data Lake to confirm that new alerts and incidents from Defender XDR are mirrored successfully.

Success criteria

  • KQL queries in the Data Lake return recent incidents and alerts.
  • Results match recent Defender XDR telemetry.

Key steps:

The Data Lake only mirrors new data ingested after onboarding. Historical data is not replicated.

  1. In the Defender portal, on the left menu, select Microsoft Sentinel > Data Lake Exploration > KQL Queries.

  2. Run the following queries to validate mirrored data.

    Expand here for detailed steps
    • Query 1 — Security Incidents

        SecurityIncident 
        | where TimeGenerated > ago(48h) 
        | summarize Count = count() by ProviderName, Severity, Status 
        | sort by Count desc 
      
    • Query 2 — Security Alerts from Defender XDR

        SecurityAlert 
        | where TimeGenerated > ago(48h) 
        | summarize Count = count() by ProductName, AlertSeverity 
        | sort by Count desc 
      

      <!– Exc3_img2.png

      Exc3_img3.png –>

      {: .note }If no data appears, generate new incidents and alerts by completing Exercise 1 > Task 04, then wait 5–15 minutes for ingestion to reflect in the Data Lake.

      {: .important }Queries against Log Analytics may return additional historical results since the Data Lake begins replication only after activation.