Notifications about assigned incident in Azure Sentinel

Piotr Batruk 1 Reputation point
2020-11-16T09:56:02.72+00:00

Hi,

I want to configure notifications about assigning incident to user.
For example, I want to get email alert any time when an incident is assigned to me.
Is it possible to configure it?
Thank you in advance.

Microsoft Sentinel
Microsoft Sentinel
A scalable, cloud-native solution for security information event management and security orchestration automated response. Previously known as Azure Sentinel.
1,065 questions
0 comments No comments
{count} votes

3 answers

Sort by: Most helpful
  1. Khurram Rahim 1,841 Reputation points
    2020-11-16T10:14:49.797+00:00

    please find mentioned below link hope it will help you

    https://azsec.azurewebsites.net/2020/01/19/notify-azure-sentinel-alert-to-your-email-automatically/

    I hope answer the question if issue resolve accept answer


  2. Piotr Batruk 1 Reputation point
    2020-11-16T14:50:43.75+00:00

    @Khurram Rahim , thank you for your answer.
    This solutions is only work in my environment for new incidents etc.
    I want to get a notification after I assigned incident to somebody.
    Is it possible?

    0 comments No comments

  3. Clive Watson - MSFT 106 Reputation points
    2020-11-26T15:35:52.507+00:00

    You could create a Schedule Rule (to run, 5min to 1hr maybe) which checks for the assignment, and this would also use the Playbook to send an email to you?
    .

    SecurityIncident
    | extend assignedTo_ = tostring(Owner.assignedTo)
    | where isnotempty(assignedTo_)
    | summarize count(), arg_max(TimeGenerated,*) by tostring(Owner)

    or
    // you can have an allowed list with only your name, but I have added the option for more than one.
    let allowedList = dynamic(["PiotrBatruk","Clive"]);
    SecurityIncident
    | extend assignedTo_ = tostring(Owner.assignedTo)
    | where isnotempty(assignedTo_)
    | where assignedTo_ in (allowedList)
    | summarize count(), arg_max(TimeGenerated,*) by tostring(Owner)

    0 comments No comments