Forum Discussion

SB V's avatar
SB V
Brass Contributor
Sep 07, 2022
Solved

Questions on Microsoft Sentinel

Hi Community,

 

Our customer raised the below queries relates to Fusion rules in Microsoft Sentinel.

 

(1) For alerts/incidents triggered by fusion rules, if it’s false positive then any input from SOC or analyst (eg. suppress the alert) can enhance the detection algorithm for the customer environment to minimize the false positive rate?

 

(2) Is there a way to force default time zone for Analytics rule in Sentinel – currently all rules fire in UTC (+00:00) – which is the default, is there a way to force rule to trigger in different time zones?

 

Any guidance would be of great help.

 

Thanks in advance!

    • SB V's avatar
      SB V
      Brass Contributor
      Hi Clive, One question, is there a way to rename the field so it doesn’t auto append ‘UTC’ to the field name?
      • Clive_Watson's avatar
        Clive_Watson
        Bronze Contributor

        SB V 

         

        Yes, but it requires changing the format from a datetime to a string (see last line of this example).


        let localTime = 'US/Pacific';
        Heartbeat
        | extend newTime = datetime_utc_to_local(TimeGenerated, localTime)
        | summarize count() by Computer, newTime, TimeGenerated
        | project Computer, TimeGenerated, localTime = tostring(newTime)



         

    • SB V's avatar
      SB V
      Brass Contributor
      Hi Clive,
      Thank you very much for the answers. Let me share with this customer to see if they find helpful.

      Thanks again!

Resources