Adding exception for weekend

cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
Announcements

Adding exception for weekend

L0 Member

Hey guys, I’m looking to exclude some detections that occurred over the weekends and could use a hand with crafting that query.

My current thought process is to add exceptions for weekend dates, but that would be a continuous task and doesn't seem very efficient in the long run.
2 REPLIES 2

L4 Transporter

// Replace 'xdr_data' with your specific dataset if different
// Replace '_time' with your actual timestamp field if different
xdr_data
| where dayofweek(_time) != 6d // Exclude Saturday
| where dayofweek(_time) != 0d // Exclude Sunday
// Add your other filters here
// | project _time, event_type, action_type

Best Regards,
Suresh

Thanks I will test it out

  • 347 Views
  • 2 replies
  • 0 Likes
Like what you see?

Show your appreciation!

Click Like if a post is helpful to you or if you just want to show your support.

Click Accept as Solution to acknowledge that the answer to your question has been provided.

The button appears next to the replies on topics you’ve started. The member who gave the solution and all future visitors to this topic will appreciate it!

These simple actions take just seconds of your time, but go a long way in showing appreciation for community members and the LIVEcommunity as a whole!

The LIVEcommunity thanks you for your participation!