table

SecurityIncident

SecurityIncident stores Microsoft Sentinel incident state changes and SOC metrics in the Log Analytics workspace.

tablesCurrent

Relationships

Schema

FieldTypeDescriptionCopy
TimeGenerateddatetimeTime the incident record was generated.
IncidentNumberintSequential incident number.
TitlestringIncident title.
SeveritystringIncident severity.
StatusstringIncident status.
OwnerdynamicIncident owner information.
AlertIdsdynamicAlerts from which the incident was created.
AdditionalDatadynamicAdditional incident metrics such as alert counts, tactics, bookmarks, and comments.
ClassificationstringIncident closing classification.
LastModifiedTimedatetimeTime the incident was last modified.

Sample KQL

Open incidents by owner and severity

Create a queue view for active Sentinel incidents that need analyst attention.

kql
SecurityIncident
| where TimeGenerated > ago(30d)
| where Status != "Closed"
| summarize Incidents=dcount(IncidentNumber), Latest=max(TimeGenerated) by Severity, Status, Owner
| order by Severity asc, Incidents desc