Skip to content

Latest commit

 

History

History
21 lines (17 loc) · 1.21 KB

AppEnrichmentExternalData.md

File metadata and controls

21 lines (17 loc) · 1.21 KB

MicrosoftGraphActivityLogs App Enrichment ExternalData Based

Query Information

Description

This query enriches the MicrosoftGraphActivityLogs with Application information Using the Azure_Application_ID list developed by @Beercow 1000+ AppIds can be enriched with the externaldata operator resulting in the query below.

References

Sentinel

let ApplicationInformation = externaldata (ApplicationName: string, AppId: string, Reference: string ) [h"https://raw.githubusercontent.com/Beercow/Azure-App-IDs/master/Azure_Application_IDs.csv"] with (ignoreFirstRecord=true, format="csv");
MicrosoftGraphActivityLogs
// Your filter here
| take 1000
| lookup kind=leftouter ApplicationInformation on $left.AppId == $right.AppId
| project-reorder AppId, ApplicationName