I would like to timechart only events that happened between 9 AM and 5 PM...any help would be appreciated
Try something like this
If date_hour is available in your data
your search date_hour>=9 AND date_hour<17 | your timechart command
If date_hour is not present,
your search | eval date_hour=strftime(_time,"%H") | where date_hour>=9 AND date_hour<17 | your timechart command
thank you!!
Try something like this
If date_hour is available in your data
your search date_hour>=9 AND date_hour<17 | your timechart command
If date_hour is not present,
your search | eval date_hour=strftime(_time,"%H") | where date_hour>=9 AND date_hour<17 | your timechart command
if i hadnt taken the screenshot... ;-P, you beat me to it by 25s!
thank you!!