Forum Discussion
Visualization Workbooks
Thanks Gary Bushey GaryBushey
I applied that Value under field name and it's works.
GaryBushey Do you have workbooks visualization template(not in-build in workbooks ) ? For only for Security Incident query. Just want to explore my self into it.
Vshah335 The only one I have is the one that comes with Azure Sentinel.
- Vshah335Oct 07, 2020Copper ContributorSecurityIncident
| extend ProductName = (parse_json(AdditionalData).alertProductNames)
| mv-expand ProductNameOn Above Query U provided earlier , In that there is Field(Colum) called 'Owner'Question -Here, Is it possible only shows 'UserprincipalName' or 'AssignedTO' Or ' Email' . Only Need One Field. Can you please provide updated query?{"userPrincipalName":null,"assignedTo":null,"objectId":null,"email":null}Again, thanks in Advance.- GaryBusheyOct 07, 2020Bronze Contributor
Vshah335 In the query below, you can then use ProductName.alertProductNames or ProductName.Owner or any other entry that is part of the AdditionalData field to get its data.
SecurityIncident
| extend ProductName = parse_json(AdditionalData)- Vshah335Oct 07, 2020Copper Contributor
SecurityIncident
| extend ProductName = parse_json(AdditionalData, ProductNames.owner)
| mv-expand AdditionalData = " email "Or
SecurityIncident
| extend ProductName = parse_json(AdditionalData, ProductNames.owner)
| where AdditionalData = " email "I am running both query, but throw me error. Any Idea ?