I am looking to "segment" operational changes(events) based on both the CLOSEDDATE & OPENDATE and essentially calculate the total number of changes in the month of March based on CLOSEDATE into one column and then OPENDATE for another column
I have created a stats table based on OPENDATE where I segment the events into different time buckets:
| eval _time=strptime(OPENDATETIME,"%Y-%m-%d %H:%M:%S")
Can I run a stats command on the events indexed using OPENDATE and then use appendcols to filter events that occurred in the last month using CLOSEDDATE?
Or is there a better way to do this?
... View more