This query looks for notable events that did not come between 0800 and 1800. Modify it as necessary for your core hours.
index=notable
| where NOT (_time >= relative_time(_time, "@d+8h") AND _time <= relative_time(_time, "@d+18h"))
This query looks for notable events that did not come between 0800 and 1800. Modify it as necessary for your core hours.
index=notable
| where NOT (_time >= relative_time(_time, "@d+8h") AND _time <= relative_time(_time, "@d+18h"))
This worked! Thank you so much! You taught me so much with this query!