Forum Discussion
Cristhofer Munoz
Microsoft
Nov 11, 2020What's New: Tags column is now available in Azure Sentinel incidents page!
Hello everyone,
We are happy to share with you a small but important improvement we added to our incidents blade – a new tag column is now available as part of the Incidents list!
Tags are...
Paolo1490
Feb 07, 2023Copper Contributor
Hi Cristhofer Munoz is it possible to search for these tags via KQL?
Specifically I am running a search of security incidents this year, and I would like to 'not' include any tickets with an 'auto close' tag. This would provide me with a list and number of tickets by 'humans' in my team rather than including ones closed by playbooks and automation etc.
Cheers.
- Clive_WatsonFeb 07, 2023Bronze Contributor
Labels == Tags
SecurityIncident
| extend Tags = parse_json(Labels)
| extend labelName_ = tostring(Tags[0].labelName)
| where isnotempty(labelName_)- PatclementineJan 17, 2024Copper Contributor
Hi Clive
I was reading though the documentation on how to create a Sentinel Incident with API but unfortunately I am not able to add labels/tags while creating a Sentinel Incident Manually with API Payload
any suggestions I could try?
- GBusheyJan 17, 2024Former EmployeeThey are referred to as "labels" in the REST API documentation. I have an example with them in my Sentinel development EBook: https://garybushey.com/2023/11/27/programming-book-version-1-0-finally-ready/