Security Indicents Createdin Last Day
Query
SecurityIncident
| where TimeGenerated > ago(1d)
| where Status == "New"
| project TimeGenerated, Title, Description, Severity, IncidentUrlExplanation
This query is looking for new security incidents that have occurred within the past day. It will retrieve the time the incident was generated, the title and description of the incident, the severity level, and the URL associated with the incident.