- Access exclusive content
- Connect with peers
- Share your expertise
- Find support resources
07-07-2025 01:46 AM
Hey guys, I’m looking to exclude some detections that occurred over the weekends and could use a hand with crafting that query.
07-07-2025 03:51 AM
// 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
07-18-2025 05:17 AM
Thanks I will test it out
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!