Forum Discussion
Using KQL queries to dive into dynamic arrays Azure Log Analytics
If you know the Index number and field, then you can modify a query like this one to suit?
SecurityAlert //| where DisplayName == "Detected suspicious DNS resolution" | extend entities = todynamic(Entities) | project AlertName , TimeGenerated, Description = parse_json(entities[0].HostName) , osFamily =parse_json(entities[1].OSFamily)
- harishbenneMay 31, 2021Copper Contributor
CliveWatson, What if I have a scenario where multiple IPs and users are under entities field?
What I am trying to do is get the IP addresses under one single variable and the list of user IDs under another one!
- ChrisBlackburnJul 08, 2019Copper Contributor
CliveWatson extending the commands to expand out index 0
IntuneAuditLogs
| where TimeGenerated > ago(7d)
| extend propertiesJson = todynamic(Properties)
| extend propertiesTargets = todynamic(propertiesJson.Targets)
| extend mydisc = todynamic(propertiesTargets[0].ModifiedProperties)What I've seen is as I continue to dig deeper into the properties, the ModifiedProperties field varies based on the specific operation, which makes it painful to determine the values I can consistently pull
- CliveWatsonJul 08, 2019Silver Contributor
I'm not familiar with the Intune data, this maybe a question for the Intune team - in case they have some plans for standardizing this data/fields, or so they get visibility? https://techcommunity.microsoft.com/t5/Microsoft-Intune/bd-p/Microsoft-Intune